Commit 483bce1d authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

Fix the FreeADsMem() prototype.

Add an activeds section to win32.api for winapi_check. Fix a documentation warning.
parent f9280a3a
......@@ -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 lpszPathName, REFIID riid, VOID** ppObject)
/*****************************************************
* FreeADsMem [ACTIVEDS.15]
*/
BOOL FreeADsMem(LPVOID pMem)
BOOL WINAPI FreeADsMem(LPVOID pMem)
{
FIXME("(%p)!stub\n",pMem);
return FALSE;
......
%%activeds.dll
%long
BOOL
HRESULT
ULONG
%wstr
LPWSTR
%ptr
LPVOID
LPVOID *
LPVOID **
REFIID
ULONG *
VOID **
%%advapi32.dll
%long
......
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