Commit 746fd6a7 authored by Alistair Leslie-Hughes's avatar Alistair Leslie-Hughes Committed by Alexandre Julliard

mapi32: Remove DECLSPEC_HIDDEN usage.

parent 73c472e5
...@@ -33,8 +33,8 @@ ...@@ -33,8 +33,8 @@
WINE_DEFAULT_DEBUG_CHANNEL(mapi); WINE_DEFAULT_DEBUG_CHANNEL(mapi);
DECLSPEC_HIDDEN LONG MAPI_ObjectCount = 0; LONG MAPI_ObjectCount = 0;
DECLSPEC_HIDDEN HINSTANCE hInstMAPI32; HINSTANCE hInstMAPI32;
/*********************************************************************** /***********************************************************************
* DllMain (MAPI32.init) * DllMain (MAPI32.init)
......
...@@ -25,8 +25,8 @@ ...@@ -25,8 +25,8 @@
#include <mapi.h> #include <mapi.h>
#include <mapix.h> #include <mapix.h>
extern void load_mapi_providers(void) DECLSPEC_HIDDEN; extern void load_mapi_providers(void);
extern void unload_mapi_providers(void) DECLSPEC_HIDDEN; extern void unload_mapi_providers(void);
typedef struct MAPI_FUNCTIONS { typedef struct MAPI_FUNCTIONS {
LPMAPIADDRESS MAPIAddress; LPMAPIADDRESS MAPIAddress;
...@@ -62,7 +62,7 @@ typedef struct MAPI_FUNCTIONS { ...@@ -62,7 +62,7 @@ typedef struct MAPI_FUNCTIONS {
HRESULT (WINAPI *WrapCompressedRTFStream) (LPSTREAM, ULONG, LPSTREAM *); HRESULT (WINAPI *WrapCompressedRTFStream) (LPSTREAM, ULONG, LPSTREAM *);
} MAPI_FUNCTIONS; } MAPI_FUNCTIONS;
extern MAPI_FUNCTIONS mapiFunctions DECLSPEC_HIDDEN; extern MAPI_FUNCTIONS mapiFunctions;
extern HINSTANCE hInstMAPI32 DECLSPEC_HIDDEN; extern HINSTANCE hInstMAPI32;
#endif #endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment