mirror of
https://github.com/reactos/reactos.git
synced 2024-11-18 21:13:52 +00:00
f4d2571b7e
MSI always reports 6.3 even without a manifest, but does not report anything higher. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=48959 Signed-off-by: Zebediah Figura <z.figura12@gmail.com> Signed-off-by: Hans Leidekker <hans@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> wine commit id 658183a803fced017e1e29f4001cec8b48748327 by Zebediah Figura <z.figura12@gmail.com>
33 lines
522 B
C
33 lines
522 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
|
|
#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__ */
|