Fix activeds issues reported by winapi_check

Francois Gouget fgouget at free.fr
Fri Jun 17 13:36:43 CDT 2005


Changelog:

  * dlls/activeds/activeds_main.c
    tools/winapi/win32.api

    Francois Gouget <fgouget at free.fr>
    Fix the FreeADsMem() prototype.
    Add an activeds section to win32.api for winapi_check.
    Fix a documentation warning.
    Fixes warnings reported by winapi_check.


-- 
Francois Gouget         fgouget at free.fr        http://fgouget.free.fr/
                            La terre est une bêta...
-------------- next part --------------
Index: dlls/activeds/activeds_main.c
===================================================================
RCS file: /var/cvs/wine/dlls/activeds/activeds_main.c,v
retrieving revision 1.1
diff -u -p -r1.1 activeds_main.c
--- dlls/activeds/activeds_main.c	13 Jun 2005 11:47:46 -0000	1.1
+++ dlls/activeds/activeds_main.c	17 Jun 2005 00:23:23 -0000
@@ -42,11 +42,10 @@ WINE_DEFAULT_DEBUG_CHANNEL(activeds);
  * DllMain
  */
 
-/* For the moment, do nothing here. */
 BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
 {
-
     TRACE("(%p, %ld, %p)\n",hinstDLL, fdwReason, lpvReserved);
+    /* For the moment, do nothing here. */
     return TRUE;
 }
 
@@ -95,7 +94,7 @@ HRESULT WINAPI ADsOpenObject(LPWSTR lpsz
 /*****************************************************
  * FreeADsMem             [ACTIVEDS.15]
  */
-BOOL FreeADsMem(LPVOID pMem)
+BOOL WINAPI FreeADsMem(LPVOID pMem)
 {
     FIXME("(%p)!stub\n",pMem);
     return FALSE;
Index: tools/winapi/win32.api
===================================================================
RCS file: /var/cvs/wine/tools/winapi/win32.api,v
retrieving revision 1.31
diff -u -p -r1.31 win32.api
--- tools/winapi/win32.api	16 May 2005 08:46:00 -0000	1.31
+++ tools/winapi/win32.api	17 Jun 2005 16:58:30 -0000
@@ -1,3 +1,24 @@
+%%activeds.dll
+
+%long
+
+BOOL
+HRESULT
+ULONG
+
+%wstr
+
+LPWSTR
+
+%ptr
+
+LPVOID
+LPVOID *
+LPVOID **
+REFIID
+ULONG *
+VOID **
+
 %%advapi32.dll
 
 %long


More information about the wine-patches mailing list