ATL: stub implementation for AtlModuleRegisterServer

Mike McCormack mike at codeweavers.com
Fri Dec 24 00:01:01 CST 2004


ChangeLog:
* stub implementation for AtlModuleRegisterServer
-------------- next part --------------
Index: dlls/atl/atl.spec
===================================================================
RCS file: /home/wine/wine/dlls/atl/atl.spec,v
retrieving revision 1.5
diff -u -r1.5 atl.spec
--- dlls/atl/atl.spec	28 Sep 2004 03:14:11 -0000	1.5
+++ dlls/atl/atl.spec	24 Dec 2004 06:00:25 -0000
@@ -10,7 +10,7 @@
 15 stub AtlModuleGetClassObject
 16 stdcall AtlModuleInit(ptr long long)
 17 stdcall AtlModuleRegisterClassObjects(ptr long long)
-18 stub AtlModuleRegisterServer
+18 stdcall AtlModuleRegisterServer(ptr long ptr)
 19 stub AtlModuleRegisterTypeLib
 20 stub AtlModuleRevokeClassObjects
 21 stdcall AtlModuleTerm(ptr)
Index: dlls/atl/atl_main.c
===================================================================
RCS file: /home/wine/wine/dlls/atl/atl_main.c,v
retrieving revision 1.6
diff -u -r1.6 atl_main.c
--- dlls/atl/atl_main.c	7 Oct 2004 03:06:51 -0000	1.6
+++ dlls/atl/atl_main.c	24 Dec 2004 06:00:25 -0000
@@ -179,3 +179,13 @@
 
     return S_OK;
 }
+
+/***********************************************************************
+ *           AtlModuleRegisterServer         [ATL.@]
+ *
+ */
+HRESULT WINAPI AtlModuleRegisterServer(_ATL_MODULEW* pM, BOOL bRegTypeLib, const CLSID* clsid) 
+{
+    FIXME("%p %d %s\n", pM, bRegTypeLib, debugstr_guid(clsid));
+    return S_OK;
+}


More information about the wine-patches mailing list