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>
This commit is contained in:
parent
44e69405ad
commit
4a91eb3626
|
@ -29,7 +29,9 @@
|
||||||
|
|
||||||
WINE_DEFAULT_DEBUG_CHANNEL(twain);
|
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)
|
BOOL WINAPI DllMain (HINSTANCE hinstance, DWORD reason, LPVOID reserved)
|
||||||
{
|
{
|
||||||
|
|
|
@ -45,11 +45,11 @@ typedef struct tagActiveDS
|
||||||
HWND event_window;
|
HWND event_window;
|
||||||
} activeDS;
|
} 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) */
|
/* Implementation of operation triplets (From Application to Source Manager) */
|
||||||
extern TW_UINT16 TWAIN_CloseDS
|
extern TW_UINT16 TWAIN_CloseDS
|
||||||
|
|
Loading…
Reference in New Issue