Commit cc7f698b authored by Michael Cronenworth's avatar Michael Cronenworth Committed by Alexandre Julliard

msi: Global variable compatibility update for gcc 10.

parent a09c08f1
......@@ -51,6 +51,8 @@
WINE_DEFAULT_DEBUG_CHANNEL(msi);
BOOL is_wow64;
static const WCHAR installerW[] = {'\\','I','n','s','t','a','l','l','e','r',0};
UINT msi_locate_product(LPCWSTR szProduct, MSIINSTALLCONTEXT *context)
......
......@@ -42,7 +42,7 @@
#include "winemsi.h"
static const BOOL is_64bit = sizeof(void *) > sizeof(int);
BOOL is_wow64 DECLSPEC_HIDDEN;
extern BOOL is_wow64 DECLSPEC_HIDDEN;
#define MSI_DATASIZEMASK 0x00ff
#define MSITYPE_VALID 0x0100
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment