|
|
Microsoft OS/2 SDK PM 02-24-1989
/*******************************Module*Header*******************************\
* Module Name: PMBITMAP.H *
* *
* Include file that declares types for bitmaps. *
* *
* Copyright (c) 1989 Microsoft Corporation *
* *
\*******************************Module*Header*******************************/
/*
* This is the file format structure for Bitmaps, Pointers and Icons
* as stored in the resource file of a PM application.
*/
typedef struct _BITMAPFILEHEADER { /* bfh */
USHORT usType;
ULONG cbSize;
INT xHotspot;
INT yHotspot;
ULONG offBits;
BITMAPINFOHEADER bmp;
} BITMAPFILEHEADER;
typedef BITMAPFILEHEADER FAR *PBITMAPFILEHEADER;
/*
* These are the identifying values that go in the wType field of the
* BITMAPFILEHEADER. (BFT_ => Bitmap File Type)
*/
#define BFT_ICON 0x4349 /* 'IC' */
#define BFT_BMAP 0x4d42 /* 'BM' */
#define BFT_POINTER 0x5450 /* 'PT' */
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.