mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 04:13:34 +00:00
- [PSDK] Introduce our own Microsoft compatible and MIT-licensed shlwapi.h and fix breaking changes - [INCLUDE/WINE] Import shlwapi.h from wine-10.0 for use with Wine compatible code - [CMAKELISTS.TXT] Bump up IE version from IE60 to IE60SP2. This is required because we are already using IE60SP2 guarded functionality; the new header unhides this. - [SHLWAPI] Fix breaking changes, including a typo for 'SHGVSPB_GLOBALDEAFAULTS' (should be 'SHGVSPB_GLOBALDEFAULTS') - [MSI] Use wine's shlwapi.h instead of our own in automation.c, don't precompile shlwapi.h. - [URLMON_WINETEST] Primarily use wineheaders for this test
34 lines
500 B
C
34 lines
500 B
C
|
|
#ifndef __WINE_MSI_PRECOMP__
|
|
#define __WINE_MSI_PRECOMP__
|
|
|
|
#include <wine/config.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#define _INC_WINDOWS
|
|
#define COM_NO_WINDOWS_H
|
|
#ifdef __REACTOS__
|
|
#define WIN32_NO_STATUS
|
|
#endif
|
|
|
|
#define COBJMACROS
|
|
|
|
#include "msipriv.h"
|
|
#include "query.h"
|
|
|
|
#include <winreg.h>
|
|
#include <wincon.h>
|
|
#include <msiserver.h>
|
|
#include <shlobj.h>
|
|
#ifndef __REACTOS__
|
|
#include <shlwapi.h>
|
|
#endif
|
|
#include <sddl.h>
|
|
|
|
#include <wine/unicode.h>
|
|
|
|
#include "resource.h"
|
|
|
|
#endif /* !__WINE_MSI_PRECOMP__ */
|