home *** CD-ROM | disk | FTP | other *** search
Java Source | 1998-03-05 | 1.2 KB | 31 lines |
- // Copyright (C) 1998 Microsoft Corporation All Rights Reserved
-
- // These classes provide direct, low-overhead access to commonly used
- // Windows api. These classes use the new J/Direct feature.
- //
- // Information on how to use J/Direct to write your own declarations
- // can be found in the Microsoft SDK for Java 2.0.
-
- package com.ms.win32;
-
-
- /** @dll.struct() */
- public class BITMAPINFO256 {
- // bmiHeader was a by-value BITMAPINFOHEADER structure
- public int bmiHeader_biSize = 40; // com.ms.dll.DllLib.sizeOf( BITMAPINFOHEADER.class );
- public int bmiHeader_biWidth;
- public int bmiHeader_biHeight;
- public short bmiHeader_biPlanes;
- public short bmiHeader_biBitCount;
- public int bmiHeader_biCompression;
- public int bmiHeader_biSizeImage;
- public int bmiHeader_biXPelsPerMeter;
- public int bmiHeader_biYPelsPerMeter;
- public int bmiHeader_biClrUsed;
- public int bmiHeader_biClrImportant;
-
- // bmiColors was an embedded array of RGBQUAD structures
- /** @dll.structmap([type=FIXEDARRAY,size=256]) */
- public int[] bmiColors;
- }
-