include: Remove DECLSPEC_HIDDEN from standard Dll* functions.
This commit is contained in:
parent
d4223b255c
commit
a02ff4b5d3
4 changed files with 6 additions and 6 deletions
|
@ -22,7 +22,7 @@
|
|||
#include "windef.h"
|
||||
#include "winbase.h"
|
||||
|
||||
BOOL WINAPI DECLSPEC_HIDDEN DllMain( HINSTANCE inst, DWORD reason, LPVOID reserved )
|
||||
BOOL WINAPI DllMain( HINSTANCE inst, DWORD reason, LPVOID reserved )
|
||||
{
|
||||
if (reason == DLL_PROCESS_ATTACH) DisableThreadLibraryCalls( inst );
|
||||
return TRUE;
|
||||
|
|
|
@ -420,8 +420,8 @@ WINOLE32API HRESULT WINAPI StringFromIID(REFIID riid, LPOLESTR*);
|
|||
/*****************************************************************************
|
||||
* COM Server dll - exports
|
||||
*/
|
||||
HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID * ppv) DECLSPEC_HIDDEN;
|
||||
HRESULT WINAPI DllCanUnloadNow(void) DECLSPEC_HIDDEN;
|
||||
HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID * ppv);
|
||||
HRESULT WINAPI DllCanUnloadNow(void);
|
||||
|
||||
/*****************************************************************************
|
||||
* Data Object
|
||||
|
|
|
@ -1089,7 +1089,7 @@ typedef HRESULT (CALLBACK *DLLGETVERSIONPROC)(DLLVERSIONINFO *);
|
|||
|
||||
#ifdef __WINESRC__
|
||||
/* shouldn't be here, but is nice for type checking */
|
||||
HRESULT WINAPI DllGetVersion(DLLVERSIONINFO *) DECLSPEC_HIDDEN;
|
||||
HRESULT WINAPI DllGetVersion(DLLVERSIONINFO *);
|
||||
#endif
|
||||
|
||||
typedef struct _DLLVERSIONINFO2 {
|
||||
|
@ -1106,7 +1106,7 @@ typedef struct _DLLVERSIONINFO2 {
|
|||
#define MAKEDLLVERULL(mjr, mnr, bld, qfe) (((ULONGLONG)(mjr)<< 48)| \
|
||||
((ULONGLONG)(mnr)<< 32) | ((ULONGLONG)(bld)<< 16) | (ULONGLONG)(qfe))
|
||||
|
||||
HRESULT WINAPI DllInstall(BOOL,LPCWSTR) DECLSPEC_HIDDEN;
|
||||
HRESULT WINAPI DllInstall(BOOL,LPCWSTR);
|
||||
|
||||
|
||||
/* IsOS definitions */
|
||||
|
|
|
@ -3048,7 +3048,7 @@ int WINAPI wWinMain(HINSTANCE,HINSTANCE,LPWSTR,int);
|
|||
|
||||
#ifdef __WINESRC__
|
||||
/* shouldn't be here, but is nice for type checking */
|
||||
BOOL WINAPI DllMain( HINSTANCE hinst, DWORD reason, LPVOID reserved ) DECLSPEC_HIDDEN;
|
||||
BOOL WINAPI DllMain( HINSTANCE hinst, DWORD reason, LPVOID reserved );
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
|
Loading…
Add table
Reference in a new issue