mirror of
https://github.com/reactos/reactos.git
synced 2025-01-02 20:43:18 +00:00
Sync to Wine-20041201
Jon Griffiths <jon_p_griffiths@yahoo.com> - Ensure DllCanUnloadNow is a truly void function, and give it a unique name so it can be documented per-dll. Tom Wickline <twickline@sitestar.net> - Version resources cleanup. svn path=/trunk/; revision=11961
This commit is contained in:
parent
cc46c6f887
commit
8679951253
4 changed files with 3 additions and 6 deletions
|
@ -14,9 +14,7 @@ C_SRCS = \
|
|||
pwcache.c \
|
||||
wnet.c
|
||||
|
||||
RC_SRCS = \
|
||||
mpr.rc
|
||||
|
||||
RC_SRCS = mpr.rc
|
||||
|
||||
@MAKE_DLL_RULES@
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
24 stdcall @(ptr) MPR_Free
|
||||
25 stdcall @(ptr long) _MPR_25
|
||||
|
||||
@ stdcall -private DllCanUnloadNow()
|
||||
@ stdcall -private DllCanUnloadNow() MPR_DllCanUnloadNow
|
||||
@ stub DllGetClassObject
|
||||
@ stdcall MultinetGetConnectionPerformanceA(ptr ptr)
|
||||
@ stdcall MultinetGetConnectionPerformanceW(ptr ptr)
|
||||
|
|
|
@ -75,7 +75,7 @@ BOOL WINAPI _MPR_25( LPBYTE lpMem, INT len )
|
|||
/*****************************************************************
|
||||
* DllCanUnloadNow [MPR.@]
|
||||
*/
|
||||
DWORD WINAPI DllCanUnloadNow(void)
|
||||
DWORD WINAPI MPR_DllCanUnloadNow(void)
|
||||
{
|
||||
FIXME("Stub\n");
|
||||
return S_OK;
|
||||
|
|
|
@ -24,6 +24,5 @@
|
|||
#define WINE_FILEVERSION_STR "5.00.2195.6611"
|
||||
#define WINE_PRODUCTVERSION 5,0,2195,6611
|
||||
#define WINE_PRODUCTVERSION_STR "5.00.2195.6611"
|
||||
#define WINE_PRODUCTNAME_STR "Wine"
|
||||
|
||||
#include "wine/wine_common_ver.rc"
|
||||
|
|
Loading…
Reference in a new issue