Add Wine-only type checking for DllRegisterServer and
DllUnregisterServer.

diff --git a/include/objbase.h b/include/objbase.h
index 8bad522..b25b4a5 100644
--- a/include/objbase.h
+++ b/include/objbase.h
@@ -416,6 +416,13 @@
 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
  */