diff options
author | Danny Smith <dannysmith@users.sourceforge.net> | 2004-01-04 21:35:32 +0000 |
---|---|---|
committer | Danny Smith <dannysmith@users.sourceforge.net> | 2004-01-04 21:35:32 +0000 |
commit | edee465c9a94307f15b3278ec236d98500c5fa0a (patch) | |
tree | 9e30b10415a09c28d0e1054733c4d67a90d2c1a5 /winsup/w32api/include/shellapi.h | |
parent | ae70c6f1838e19ce617d8c288e7a6a3d76b7b1e2 (diff) | |
download | cygnal-edee465c9a94307f15b3278ec236d98500c5fa0a.tar.gz cygnal-edee465c9a94307f15b3278ec236d98500c5fa0a.tar.bz2 cygnal-edee465c9a94307f15b3278ec236d98500c5fa0a.zip |
2004-01-05 Filip Navara <xnavara@volny.cz>
* include/prsht.h (LPCPROPSHEETPAGEW): Fix definition.
* include/shlwapi.h (SHRegQueryInfoUSKey[AW]): Fix prototype.
* include/cpl.h (CPL_STARTWPARMS[AW]): Correct.
* include/shellapi.h (ABS_AUTOHIDE, ABS_ALWAYSONTOP,
SEE_MASK_NO_CONSOLE, SEE_MASK_ASYNCOK, SEE_MASK_HMONITOR,
FOF_NOCOPYSECURITYATTRIBS): Add defines.
* include/shlobj.h (BFFM_SETOKTEXT, BFFM_SETEXPANDED,
CSIDL_FLAG_DONT_VERIFY, CSIDL_FLAG_CREATE, CSIDL_FLAG_MASK,
CFSTR_INETURL[AW], SHGDN_FOREDITING, SHGDN_FORADDRESSBAR,
SSF_*): Add defines.
(SHCNF_PATH[AW], SHCNF_PRINTER[AW], CFSTR_FILENAME[AW],
CFSTR_FILENAMEMAP[AW], CFSTR_FILEDESCRIPTOR[AW], CFSTR_SHELLURL,
CMDSTR_NEWFOLDER[AW], CMDSTR_VIEWLIST[AW], CMDSTR_VIEWDETAILS[AW]):
Correct.
(IEnumIDList): Add COBJMACROS.
* include/winuser.h (MIM_*): Add define.
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 |