Added WS_EX_COMPOSITED.
This commit is contained in:
parent
7d86789758
commit
724981bf60
|
@ -3003,8 +3003,6 @@ typedef struct tagMINIMIZEDMETRICS {
|
|||
#define WS_EX_TOPMOST 0x00000008L
|
||||
#define WS_EX_ACCEPTFILES 0x00000010L
|
||||
#define WS_EX_TRANSPARENT 0x00000020L
|
||||
|
||||
/* New Win95/WinNT4 styles */
|
||||
#define WS_EX_MDICHILD 0x00000040L
|
||||
#define WS_EX_TOOLWINDOW 0x00000080L
|
||||
#define WS_EX_WINDOWEDGE 0x00000100L
|
||||
|
@ -3019,15 +3017,15 @@ typedef struct tagMINIMIZEDMETRICS {
|
|||
#define WS_EX_CONTROLPARENT 0x00010000L
|
||||
#define WS_EX_STATICEDGE 0x00020000L
|
||||
#define WS_EX_APPWINDOW 0x00040000L
|
||||
#define WS_EX_LAYOUTRTL 0x00400000L
|
||||
#define WS_EX_LAYERED 0x00080000L
|
||||
#define WS_EX_NOINHERITLAYOUT 0x00100000L
|
||||
#define WS_EX_LAYOUTRTL 0x00400000L
|
||||
#define WS_EX_COMPOSITED 0x02000000L
|
||||
#define WS_EX_NOACTIVATE 0x08000000L
|
||||
|
||||
#define WS_EX_OVERLAPPEDWINDOW (WS_EX_WINDOWEDGE|WS_EX_CLIENTEDGE)
|
||||
#define WS_EX_PALETTEWINDOW (WS_EX_WINDOWEDGE|WS_EX_TOOLWINDOW|WS_EX_TOPMOST)
|
||||
|
||||
/* New Win2000 styles */
|
||||
#define WS_EX_LAYERED 0x00080000L
|
||||
|
||||
/* WINE internal... */
|
||||
#define WS_EX_TRAYWINDOW 0x80000000L
|
||||
|
||||
|
|
Loading…
Reference in New Issue