Add Wine-only type checking for DllRegisterServer and

DllUnregisterServer.
oldstable
Robert Shearman 2005-05-17 14:33:17 +00:00 committed by Alexandre Julliard
parent 83f001b6c7
commit 714c60f081
1 changed files with 7 additions and 0 deletions

View File

@ -416,6 +416,13 @@ INT WINAPI StringFromGUID2(REFGUID id, LPOLESTR str, INT cmax);
HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID * ppv);
HRESULT WINAPI DllCanUnloadNow(void);
/* shouldn't be here, but is nice for type checking */
#ifdef __WINESRC__
HRESULT WINAPI DllRegisterServer(void);
HRESULT WINAPI DllUnregisterServer(void);
#endif
/*****************************************************************************
* Data Object
*/