Commit 714c60f0 authored by Robert Shearman's avatar Robert Shearman Committed by Alexandre Julliard

Add Wine-only type checking for DllRegisterServer and

DllUnregisterServer.
parent 83f001b6
......@@ -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
*/
......
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