2018-03-04 23:30:58 +00:00
|
|
|
|
|
|
|
#ifndef __WINE_MSI_PRECOMP__
|
|
|
|
#define __WINE_MSI_PRECOMP__
|
|
|
|
|
|
|
|
#include <wine/config.h>
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
#define _INC_WINDOWS
|
|
|
|
#define COM_NO_WINDOWS_H
|
2022-03-13 18:08:27 +00:00
|
|
|
#ifdef __REACTOS__
|
|
|
|
#define WIN32_NO_STATUS
|
|
|
|
#endif
|
2018-03-04 23:30:58 +00:00
|
|
|
|
|
|
|
#define COBJMACROS
|
|
|
|
#define NONAMELESSUNION
|
|
|
|
#define NONAMELESSSTRUCT
|
|
|
|
|
|
|
|
#include "msipriv.h"
|
|
|
|
#include "query.h"
|
|
|
|
|
|
|
|
#include <winreg.h>
|
|
|
|
#include <wincon.h>
|
|
|
|
#include <msiserver.h>
|
|
|
|
#include <shlobj.h>
|
|
|
|
#include <shlwapi.h>
|
|
|
|
#include <sddl.h>
|
|
|
|
|
|
|
|
#include <wine/unicode.h>
|
|
|
|
|
|
|
|
#include "resource.h"
|
|
|
|
|
|
|
|
#endif /* !__WINE_MSI_PRECOMP__ */
|