Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
7c69033b
Commit
7c69033b
authored
Aug 09, 2006
by
Tijl Coosemans
Committed by
Alexandre Julliard
Aug 09, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Rename _execve to MSVCRT__execve.
parent
83c30a55
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
msvcrt.spec
dlls/msvcrt/msvcrt.spec
+1
-1
process.c
dlls/msvcrt/process.c
+1
-1
No files found.
dlls/msvcrt/msvcrt.spec
View file @
7c69033b
...
@@ -211,7 +211,7 @@
...
@@ -211,7 +211,7 @@
@ varargs _execlp(str str)
@ varargs _execlp(str str)
@ varargs _execlpe(str str)
@ varargs _execlpe(str str)
@ cdecl _execv(str str)
@ cdecl _execv(str str)
@ cdecl _execve(str str str)
@ cdecl _execve(str str str)
MSVCRT__execve
@ cdecl _execvp(str str)
@ cdecl _execvp(str str)
@ cdecl _execvpe(str str str)
@ cdecl _execvpe(str str str)
@ cdecl _exit(long) MSVCRT__exit
@ cdecl _exit(long) MSVCRT__exit
...
...
dlls/msvcrt/process.c
View file @
7c69033b
...
@@ -295,7 +295,7 @@ MSVCRT_intptr_t CDECL _execv(const char* name, char* const* argv)
...
@@ -295,7 +295,7 @@ MSVCRT_intptr_t CDECL _execv(const char* name, char* const* argv)
* Like on Windows, this function does not handle arguments with spaces
* Like on Windows, this function does not handle arguments with spaces
* or double-quotes.
* 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
);
return
_spawnve
(
MSVCRT__P_OVERLAY
,
name
,
(
const
char
*
const
*
)
argv
,
envv
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment