Skip to content

Commit 5741562

Browse files
winesynclearn-more
authored andcommitted
[WINESYNC] msi: Global variable compatibility update for gcc 10.
Signed-off-by: Michael Cronenworth <[email protected]> Signed-off-by: Hans Leidekker <[email protected]> Signed-off-by: Alexandre Julliard <[email protected]> wine commit id cc7f698b8245a48669d248569e7589ff824f2c70 by Michael Cronenworth <[email protected]>
1 parent 373ffef commit 5741562

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

dll/win32/msi/msi.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@
5151

5252
WINE_DEFAULT_DEBUG_CHANNEL(msi);
5353

54+
BOOL is_wow64;
55+
5456
static const WCHAR installerW[] = {'\\','I','n','s','t','a','l','l','e','r',0};
5557

5658
UINT msi_locate_product(LPCWSTR szProduct, MSIINSTALLCONTEXT *context)

dll/win32/msi/msipriv.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
#include "winemsi_s.h"
4343

4444
static const BOOL is_64bit = sizeof(void *) > sizeof(int);
45-
BOOL is_wow64 DECLSPEC_HIDDEN;
45+
extern BOOL is_wow64 DECLSPEC_HIDDEN;
4646

4747
#define MSI_DATASIZEMASK 0x00ff
4848
#define MSITYPE_VALID 0x0100

0 commit comments

Comments
 (0)