- 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
This commit is contained in:
Hermès Bélusca-Maïto 2015-10-20 22:49:34 +00:00
parent c220116405
commit 2d61b5e7e1
2 changed files with 2 additions and 1 deletions

View 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

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