https://git.reactos.org/?p=reactos.git;a=commitdiff;h=3188f93fd46858a356f357f97913d388db53ed9f

commit 3188f93fd46858a356f357f97913d388db53ed9f
Author:     Stanislav Motylkov <x86co...@gmail.com>
AuthorDate: Fri Oct 7 04:18:28 2022 +0300
Commit:     Stanislav Motylkov <x86co...@gmail.com>
CommitDate: Mon Oct 10 18:30:24 2022 +0300

    [PSDK] Add some missing Shell State Flags to shlobj.h
    
    See https://docs.microsoft.com/en-us/windows/win32/shell/ssf-constants
    
    CORE-8427
---
 sdk/include/psdk/shlobj.h | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/sdk/include/psdk/shlobj.h b/sdk/include/psdk/shlobj.h
index 2fe6cf1d047..26745ce3390 100644
--- a/sdk/include/psdk/shlobj.h
+++ b/sdk/include/psdk/shlobj.h
@@ -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

Reply via email to