Yet another attempt at fixing CW_USEDEFAULT handling.
[wine.git] / include / dispdib.h
blob7304cf05927f5c2b33ccc3d07d7600c1f9b59b52
1 /*
2 * DISPDIB.dll
3 *
4 * Copyright 1998 Ove KÅven
6 */
8 #ifndef __WINE_DISPDIB_H
9 #define __WINE_DISPDIB_H
11 /* error codes */
12 #define DISPLAYDIB_NOERROR 0x0000
13 #define DISPLAYDIB_NOTSUPPORTED 0x0001
14 #define DISPLAYDIB_INVALIDDIB 0x0002
15 #define DISPLAYDIB_INVALIDFORMAT 0x0003
16 #define DISPLAYDIB_INVALIDTASK 0x0004
18 /* flags */
19 #define DISPLAYDIB_NOPALETTE 0x0010
20 #define DISPLAYDIB_NOCENTER 0x0020
21 #define DISPLAYDIB_NOWAIT 0x0040
22 #define DISPLAYDIB_BEGIN 0x8000
23 #define DISPLAYDIB_END 0x4000
24 #define DISPLAYDIB_MODE 0x000F /* mask */
25 #define DISPLAYDIB_MODE_DEFAULT 0x0000
26 #define DISPLAYDIB_MODE_320x200x8 0x0001
27 #define DISPLAYDIB_MODE_320x240x8 0x0005
29 WORD WINAPI DisplayDib( LPBITMAPINFO lpbi, LPSTR lpBits, WORD wFlags );
31 #endif /* __WINE_DISPDIB_H */