diff options
Diffstat (limited to 'winsup/w32api/include/shellapi.h')
-rw-r--r-- | winsup/w32api/include/shellapi.h | 22 |
1 files changed, 14 insertions, 8 deletions
diff --git a/winsup/w32api/include/shellapi.h b/winsup/w32api/include/shellapi.h index 2de41657e..0a583077c 100644 --- a/winsup/w32api/include/shellapi.h +++ b/winsup/w32api/include/shellapi.h @@ -12,18 +12,23 @@ extern "C" { #define ABE_TOP 1 #define ABE_RIGHT 2 #define ABE_BOTTOM 3 +#define ABS_AUTOHIDE 1 +#define ABS_ALWAYSONTOP 2 #define SEE_MASK_CLASSNAME 1 #define SEE_MASK_CLASSKEY 3 #define SEE_MASK_IDLIST 4 #define SEE_MASK_INVOKEIDLIST 12 -#define SEE_MASK_ICON 16 -#define SEE_MASK_HOTKEY 32 -#define SEE_MASK_NOCLOSEPROCESS 64 -#define SEE_MASK_CONNECTNETDRV 128 -#define SEE_MASK_FLAG_DDEWAIT 256 -#define SEE_MASK_DOENVSUBST 512 -#define SEE_MASK_FLAG_NO_UI 1024 -#define SEE_MASK_UNICODE 65536 +#define SEE_MASK_ICON 0x10 +#define SEE_MASK_HOTKEY 0x20 +#define SEE_MASK_NOCLOSEPROCESS 0x40 +#define SEE_MASK_CONNECTNETDRV 0x80 +#define SEE_MASK_FLAG_DDEWAIT 0x100 +#define SEE_MASK_DOENVSUBST 0x200 +#define SEE_MASK_FLAG_NO_UI 0x400 +#define SEE_MASK_NO_CONSOLE 0x8000 +#define SEE_MASK_UNICODE 0x10000 +#define SEE_MASK_ASYNCOK 0x100000 +#define SEE_MASK_HMONITOR 0x200000 #define ABM_NEW 0 #define ABM_REMOVE 1 #define ABM_QUERYPOS 2 @@ -70,6 +75,7 @@ extern "C" { #define FOF_SIMPLEPROGRESS 256 #define FOF_NOCONFIRMMKDIR 512 #define FOF_NOERRORUI 1024 +#define FOF_NOCOPYSECURITYATTRIBS 2048 #define PO_DELETE 19 #define PO_RENAME 20 #define PO_PORTCHANGE 32 |