[PSDK]
authorHermès Bélusca-Maïto <hermes.belusca-maito@reactos.org>
Tue, 20 Oct 2015 22:49:34 +0000 (22:49 +0000)
committerHermès Bélusca-Maïto <hermes.belusca-maito@reactos.org>
Tue, 20 Oct 2015 22:49:34 +0000 (22:49 +0000)
- Enable the specstrings.h in shlwapi header (since we have it)
- Add missing BIF_SHAREABLE define (which exists in the 2k3 PSDK), even if it's not used at all in our code (and in wine either); I use it in msconfig for a shell browse dialog (because I want it to behave as I expect also on windows).

svn path=/trunk/; revision=69631

reactos/include/psdk/shlobj.h
reactos/include/psdk/shlwapi.h

index 820b1ad..5e9b98f 100644 (file)
@@ -968,6 +968,7 @@ typedef struct tagBROWSEINFOW {
 #define BIF_BROWSEFORCOMPUTER  0x1000
 #define BIF_BROWSEFORPRINTER   0x2000
 #define BIF_BROWSEINCLUDEFILES 0x4000
+#define BIF_SHAREABLE          0x8000
 
 /* message from browser */
 #define BFFM_INITIALIZED        1
index 785c2cd..ffb2b4e 100644 (file)
@@ -21,7 +21,7 @@
 #ifndef __WINE_SHLWAPI_H
 #define __WINE_SHLWAPI_H
 
-/* FIXME: #include <specstrings.h> */
+#include <specstrings.h>
 #include <objbase.h>
 #include <shtypes.h>