Fix the FreeADsMem() prototype.
Add an activeds section to win32.api for winapi_check. Fix a documentation warning.
This commit is contained in:
parent
f9280a3a95
commit
483bce1dae
|
@ -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;
|
||||
|
|
|
@ -1,3 +1,24 @@
|
|||
%%activeds.dll
|
||||
|
||||
%long
|
||||
|
||||
BOOL
|
||||
HRESULT
|
||||
ULONG
|
||||
|
||||
%wstr
|
||||
|
||||
LPWSTR
|
||||
|
||||
%ptr
|
||||
|
||||
LPVOID
|
||||
LPVOID *
|
||||
LPVOID **
|
||||
REFIID
|
||||
ULONG *
|
||||
VOID **
|
||||
|
||||
%%advapi32.dll
|
||||
|
||||
%long
|
||||
|
|
Loading…
Reference in New Issue