twain_32: Global variable compatibility update for gcc 10.

Signed-off-by: Michael Cronenworth <mike@cchtml.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
feature/deterministic
Michael Cronenworth 2020-01-23 17:05:26 -06:00 committed by Alexandre Julliard
parent 44e69405ad
commit 4a91eb3626
2 changed files with 6 additions and 4 deletions

View File

@ -29,7 +29,9 @@
WINE_DEFAULT_DEBUG_CHANNEL(twain);
extern HINSTANCE DSM_hinstance;
TW_UINT16 DSM_twCC;
activeDS *activeSources;
HINSTANCE DSM_hinstance;
BOOL WINAPI DllMain (HINSTANCE hinstance, DWORD reason, LPVOID reserved)
{

View File

@ -45,11 +45,11 @@ typedef struct tagActiveDS
HWND event_window;
} activeDS;
TW_UINT16 DSM_twCC DECLSPEC_HIDDEN; /* current condition code of Source Manager */
extern TW_UINT16 DSM_twCC DECLSPEC_HIDDEN; /* current condition code of Source Manager */
activeDS *activeSources DECLSPEC_HIDDEN; /* list of active data sources */
extern activeDS *activeSources DECLSPEC_HIDDEN; /* list of active data sources */
HINSTANCE DSM_hinstance DECLSPEC_HIDDEN;
extern HINSTANCE DSM_hinstance DECLSPEC_HIDDEN;
/* Implementation of operation triplets (From Application to Source Manager) */
extern TW_UINT16 TWAIN_CloseDS