[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:
Stanislav Motylkov 2022-10-07 04:18:28 +03:00
parent 6bf909d66a
commit 3188f93fd4
No known key found for this signature in database
GPG key ID: AFE513258CBA9E92

View file

@ -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