Added stub for DllCanUnloadNow.

This commit is contained in:
Aric Stewart 2003-05-12 03:28:54 +00:00 committed by Alexandre Julliard
parent fa65a24817
commit 7ef07bc609
2 changed files with 9 additions and 1 deletions

View File

@ -23,7 +23,7 @@
24 stdcall @(ptr) MPR_Free
25 stdcall @(ptr long) _MPR_25
@ stub DllCanUnloadNow
@ stdcall DllCanUnloadNow()
@ stub DllGetClassObject
@ stdcall MultinetGetConnectionPerformanceA(ptr ptr)
@ stdcall MultinetGetConnectionPerformanceW(ptr ptr)

View File

@ -68,3 +68,11 @@ BOOL WINAPI _MPR_25( LPBYTE lpMem, INT len )
return FALSE;
}
/*****************************************************************
* DllCanUnloadNow [MPR.@]
*/
DWORD WINAPI DllCanUnloadNow(void)
{
FIXME("Stub\n");
return S_OK;
}