home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 10 / ioProg_10.iso / soft / sdk20 / jsdk05.cab / Src / Win32Api / ENHMETAHEADER.java < prev    next >
Encoding:
Java Source  |  1997-09-25  |  1.3 KB  |  47 lines

  1. // Copyright (C) 1997 Microsoft Corporation  All Rights Reserved
  2.  
  3. // These classes provide direct, low-overhead access to commonly used
  4. // Windows api. These classes use the new J/Direct feature.
  5. //
  6. // Information on how to use J/Direct to write your own declarations
  7. // can be found in the Microsoft SDK for Java 2.0.
  8.  
  9. package com.ms.win32;
  10.  
  11.  
  12. /** @dll.struct() */
  13. public class ENHMETAHEADER {
  14.     public int    iType;
  15.     public int    nSize;
  16.     // rclBounds was a by-value RECTL structure
  17.     public int    rclBounds_left;
  18.     public int    rclBounds_top;
  19.     public int    rclBounds_right;
  20.     public int    rclBounds_bottom;
  21.     // rclFrame was a by-value RECTL structure
  22.     public int    rclFrame_left;
  23.     public int    rclFrame_top;
  24.     public int    rclFrame_right;
  25.     public int    rclFrame_bottom;
  26.     public int    dSignature;
  27.     public int    nVersion;
  28.     public int    nBytes;
  29.     public int    nRecords;
  30.     public short    nHandles;
  31.     public short    sReserved;
  32.     public int    nDescription;
  33.     public int    offDescription;
  34.     public int    nPalEntries;
  35.     // szlDevice was a by-value SIZE structure
  36.     public int    szlDevice_cx;
  37.     public int    szlDevice_cy;
  38.     // szlMillimeters was a by-value SIZE structure
  39.     public int    szlMillimeters_cx;
  40.     public int    szlMillimeters_cy;
  41.     public int    cbPixelFormat;
  42.     public int    offPixelFormat;
  43.     public int    bOpenGL;
  44. }
  45.  
  46.  
  47.