msvcrt: rename _execve

Tijl Coosemans tijl at ulyssis.org
Wed Aug 9 14:28:52 CDT 2006


* rename _execve to MSVCRT__execve

Index: dlls/msvcrt/msvcrt.spec
===================================================================
RCS file: /home/wine/wine/dlls/msvcrt/msvcrt.spec,v
retrieving revision 1.124
diff -u -r1.124 msvcrt.spec
--- dlls/msvcrt/msvcrt.spec	7 Aug 2006 12:14:24 -0000	1.124
+++ dlls/msvcrt/msvcrt.spec	9 Aug 2006 19:18:05 -0000
@@ -211,7 +211,7 @@
 @ varargs _execlp(str str)
 @ varargs _execlpe(str str)
 @ cdecl _execv(str str)
-@ cdecl _execve(str str str)
+@ cdecl _execve(str str str) MSVCRT__execve
 @ cdecl _execvp(str str)
 @ cdecl _execvpe(str str str)
 @ cdecl _exit(long) MSVCRT__exit
Index: dlls/msvcrt/process.c
===================================================================
RCS file: /home/wine/wine/dlls/msvcrt/process.c,v
retrieving revision 1.35
diff -u -r1.35 process.c
--- dlls/msvcrt/process.c	9 Aug 2006 11:04:30 -0000	1.35
+++ dlls/msvcrt/process.c	9 Aug 2006 19:18:07 -0000
@@ -295,7 +295,7 @@
  * Like on Windows, this function does not handle arguments with spaces
  * or double-quotes.
  */
-MSVCRT_intptr_t CDECL _execve(const char* name, char* const* argv, const char* const* envv)
+MSVCRT_intptr_t CDECL MSVCRT__execve(const char* name, char* const* argv, const char* const* envv)
 {
   return _spawnve(MSVCRT__P_OVERLAY, name, (const char* const*) argv, envv);
 }



More information about the wine-patches mailing list