mirror of
https://github.com/reactos/reactos.git
synced 2025-04-06 05:34:22 +00:00
[PSDK] Add some missing Shell State Flags to shlobj.h
See https://docs.microsoft.com/en-us/windows/win32/shell/ssf-constants CORE-8427
This commit is contained in:
parent
6bf909d66a
commit
3188f93fd4
1 changed files with 13 additions and 0 deletions
|
@ -1539,6 +1539,19 @@ VOID WINAPI SHGetSettings(_Out_ LPSHELLFLAGSTATE lpsfs, DWORD dwMask);
|
|||
#define SSF_HIDEICONS 0x4000
|
||||
#define SSF_SHOWSUPERHIDDEN 0x00040000
|
||||
#define SSF_SEPPROCESS 0x00080000
|
||||
#if (NTDDI_VERSION >= NTDDI_WINXP)
|
||||
#define SSF_NONETCRAWLING 0x00100000
|
||||
#define SSF_STARTPANELON 0x00200000
|
||||
#define SSF_SHOWSTARTPAGE 0x00400000
|
||||
#endif
|
||||
#if (NTDDI_VERSION >= NTDDI_VISTA)
|
||||
#define SSF_AUTOCHECKSELECT 0x00800000
|
||||
#define SSF_ICONSONLY 0x01000000
|
||||
#define SSF_SHOWTYPEOVERLAY 0x02000000
|
||||
#endif
|
||||
#if (NTDDI_VERSION >= NTDDI_WIN8)
|
||||
#define SSF_SHOWSTATUSBAR 0x04000000
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
* SHRestricted API
|
||||
|
|
Loading…
Reference in a new issue