home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 14 / IOPROG_14.ISO / soft / sdkjava / sdkjava.exe / SDKJava.cab / Src / Win32Api / BITMAPINFOHEADER.java < prev    next >
Encoding:
Java Source  |  1998-03-05  |  871 b   |  26 lines

  1. // Copyright (C) 1998 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 BITMAPINFOHEADER {
  14.         public int      biSize = 40;    // com.ms.dll.DllLib.sizeOf( this );
  15.         public int      biWidth;
  16.         public int      biHeight;
  17.         public short    biPlanes;
  18.         public short    biBitCount;
  19.         public int      biCompression;
  20.         public int      biSizeImage;
  21.         public int      biXPelsPerMeter;
  22.         public int      biYPelsPerMeter;
  23.         public int      biClrUsed;
  24.         public int      biClrImportant;
  25. }
  26.