mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-31 04:13:37 +00:00
15 lines
397 B
C
15 lines
397 B
C
#ifndef __INCLUDE_USER32_WININTERNAL_H
|
|
#define __INCLUDE_USER32_WININTERNAL_H
|
|
|
|
#define WIN_NCACTIVATED (0x0080)
|
|
|
|
/* internal DCX flags */
|
|
#define DCX_DCEEMPTY 0x00000800
|
|
#define DCX_DCEBUSY 0x00001000
|
|
#define DCX_DCEDIRTY 0x00002000
|
|
#define DCX_WINDOWPAINT 0x00020000
|
|
#define DCX_KEEPCLIPRGN 0x00040000
|
|
#define DCX_NOCLIPCHILDREN 0x00080000
|
|
|
|
#endif /* __INCLUDE_USER32_WININTERNAL_H */
|