1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-08 03:45:57 +00:00

mapi32: Remove DECLSPEC_HIDDEN usage.

This commit is contained in:
Alistair Leslie-Hughes 2023-06-28 18:44:52 +10:00 committed by Alexandre Julliard
parent 73c472e5b5
commit 746fd6a7f5
2 changed files with 6 additions and 6 deletions

View File

@ -33,8 +33,8 @@
WINE_DEFAULT_DEBUG_CHANNEL(mapi);
DECLSPEC_HIDDEN LONG MAPI_ObjectCount = 0;
DECLSPEC_HIDDEN HINSTANCE hInstMAPI32;
LONG MAPI_ObjectCount = 0;
HINSTANCE hInstMAPI32;
/***********************************************************************
* DllMain (MAPI32.init)

View File

@ -25,8 +25,8 @@
#include <mapi.h>
#include <mapix.h>
extern void load_mapi_providers(void) DECLSPEC_HIDDEN;
extern void unload_mapi_providers(void) DECLSPEC_HIDDEN;
extern void load_mapi_providers(void);
extern void unload_mapi_providers(void);
typedef struct MAPI_FUNCTIONS {
LPMAPIADDRESS MAPIAddress;
@ -62,7 +62,7 @@ typedef struct MAPI_FUNCTIONS {
HRESULT (WINAPI *WrapCompressedRTFStream) (LPSTREAM, ULONG, LPSTREAM *);
} MAPI_FUNCTIONS;
extern MAPI_FUNCTIONS mapiFunctions DECLSPEC_HIDDEN;
extern HINSTANCE hInstMAPI32 DECLSPEC_HIDDEN;
extern MAPI_FUNCTIONS mapiFunctions;
extern HINSTANCE hInstMAPI32;
#endif