source: trunk/src/user32/IMAGE.H@ 91

Last change on this file since 91 was 46, checked in by sandervl, 26 years ago

* empty log message *

File size: 622 bytes
Line 
1#ifndef __IMAGE_H__
2#define __IMAGE_H__
3
4//Used in LoadImage
5#define IMAGE_BITMAP 0
6#define IMAGE_ICON 1
7#define IMAGE_CURSOR 2
8#define IMAGE_ENHMETAFILE 3
9
10#define LR_DEFAULTCOLOR 0x0000
11#define LR_MONOCHROME 0x0001
12#define LR_COLOR 0x0002
13#define LR_COPYRETURNORG 0x0004
14#define LR_COPYDELETEORG 0x0008
15#define LR_LOADFROMFILE 0x0010
16#define LR_LOADTRANSPARENT 0x0020
17#define LR_DEFAULTSIZE 0x0040
18#define LR_LOADMAP3DCOLORS 0x1000
19#define LR_CREATEDIBSECTION 0x2000
20#define LR_COPYFROMRESOURCE 0x4000
21#define LR_SHARED 0x8000
22
23#endif
Note: See TracBrowser for help on using the repository browser.