Two small fixes

François Gouget fgouget at codeweavers.com
Fri Mar 9 20:23:56 CST 2001


Changelog:

   François Gouget <fgouget at codeweavers.com>

 * include/winbase.h
   Added CreateRemoteThread

 * tools/winemaker
   Added missing extension for 'ole32.dll'


-- 
François Gouget
fgouget at codeweavers.com
-------------- next part --------------
Index: include/winbase.h
===================================================================
RCS file: /home/cvs/wine/wine/include/winbase.h,v
retrieving revision 1.104
diff -u -r1.104 winbase.h
--- include/winbase.h	2001/02/12 01:29:08	1.104
+++ include/winbase.h	2001/03/09 01:03:36
@@ -1273,6 +1273,7 @@
                                     LPSECURITY_ATTRIBUTES,BOOL,DWORD,LPVOID,LPCWSTR,
                                     LPSTARTUPINFOW,LPPROCESS_INFORMATION);
 #define     CreateProcess WINELIB_NAME_AW(CreateProcess)
+HANDLE      WINAPI CreateRemoteThread(HANDLE,LPSECURITY_ATTRIBUTES,DWORD,LPTHREAD_START_ROUTINE,LPVOID,DWORD,LPDWORD);
 HANDLE    WINAPI CreateSemaphoreA(LPSECURITY_ATTRIBUTES,LONG,LONG,LPCSTR);
 HANDLE    WINAPI CreateSemaphoreW(LPSECURITY_ATTRIBUTES,LONG,LONG,LPCWSTR);
 #define     CreateSemaphore WINELIB_NAME_AW(CreateSemaphore)
Index: tools/winemaker
===================================================================
RCS file: /home/cvs/wine/wine/tools/winemaker,v
retrieving revision 1.19
diff -u -r1.19 winemaker
--- tools/winemaker	2001/03/04 01:03:55	1.19
+++ tools/winemaker	2001/03/09 01:03:39
@@ -745,7 +745,7 @@
     # This is the default link list of Visual Studio, except odbccp32 
     # which we don't have in Wine. Also I add ntdll which seems 
     # necessary for Winelib.
-    my @std_imports=qw(advapi32.dll comdlg32.dll gdi32.dll kernel32.dll ntdll.dll odbc32.dll ole32 oleaut32.dll shell32.dll user32.dll winspool.drv);
+    my @std_imports=qw(advapi32.dll comdlg32.dll gdi32.dll kernel32.dll ntdll.dll odbc32.dll ole32.dll oleaut32.dll shell32.dll user32.dll winspool.drv);
     @$target[$T_IMPORTS]=\@std_imports;
     push @{@$project[$P_TARGETS]},$target;
 


More information about the wine-patches mailing list