[TWAIN_32] Global variable compatibility update for gcc 10.

Imported Wine commit 4a91eb362666b3af549c48b95e093051756628e0

Signed-off-by: Michael Cronenworth <mike@cchtml.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Victor Perevertkin 2022-04-26 03:05:26 +03:00
parent f4a01431ca
commit c6aac2bbfd
No known key found for this signature in database
GPG key ID: C750B7222E9C7830
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