Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
676164cc
Commit
676164cc
authored
Nov 14, 2003
by
Kirill Smelkov
Committed by
Alexandre Julliard
Nov 14, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added _execle/_execlpe & _spawnle/_spawnlpe stubs.
parent
55b51eab
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
41 additions
and
4 deletions
+41
-4
msvcrt.spec
dlls/msvcrt/msvcrt.spec
+4
-4
process.c
dlls/msvcrt/process.c
+37
-0
No files found.
dlls/msvcrt/msvcrt.spec
View file @
676164cc
...
...
@@ -206,9 +206,9 @@
@ cdecl _except_handler2(ptr ptr ptr ptr)
@ cdecl _except_handler3(ptr ptr ptr ptr)
@ varargs _execl(str str)
@
stub _execle #(str str) varargs
@
varargs _execle(str str)
@ varargs _execlp(str str)
@
stub _execlpe #(str str) varargs
@
varargs _execlpe(str str)
@ cdecl _execv(str str)
@ cdecl _execve(str str str)
@ cdecl _execvp(str str)
...
...
@@ -437,9 +437,9 @@
@ varargs _snwprintf(wstr long wstr) ntdll._snwprintf
@ varargs _sopen(str long long) MSVCRT__sopen
@ varargs _spawnl(long str str)
@
stub _spawnle #(long str str) varargs
@
varargs _spawnle(long str str)
@ varargs _spawnlp(long str str)
@
stub _spawnlpe #(long str str) varargs
@
varargs _spawnlpe(long str str)
@ cdecl _spawnv(long str ptr)
@ cdecl _spawnve(long str ptr ptr)
@ cdecl _spawnvp(long str ptr)
...
...
dlls/msvcrt/process.c
View file @
676164cc
...
...
@@ -246,6 +246,15 @@ int _execl(const char* name, const char* arg0, ...)
}
/*********************************************************************
* _execle (MSVCRT.@)
*/
int
_execle
(
const
char
*
name
,
const
char
*
arg0
,
...)
{
FIXME
(
"stub
\n
"
);
return
-
1
;
}
/*********************************************************************
* _execlp (MSVCRT.@)
*
* Like on Windows, this function does not handle arguments with spaces
...
...
@@ -271,6 +280,15 @@ int _execlp(const char* name, const char* arg0, ...)
}
/*********************************************************************
* _execlpe (MSVCRT.@)
*/
int
_execlpe
(
const
char
*
name
,
const
char
*
arg0
,
...)
{
FIXME
(
"stub
\n
"
);
return
-
1
;
}
/*********************************************************************
* _execv (MSVCRT.@)
*
* Like on Windows, this function does not handle arguments with spaces
...
...
@@ -341,6 +359,16 @@ int _spawnl(int flags, const char* name, const char* arg0, ...)
}
/*********************************************************************
* _spawnle (MSVCRT.@)
*/
int
_spawnle
(
int
flags
,
const
char
*
name
,
const
char
*
arg0
,
...)
{
FIXME
(
"stub
\n
"
);
return
-
1
;
}
/*********************************************************************
* _spawnlp (MSVCRT.@)
*
* Like on Windows, this function does not handle arguments with spaces
...
...
@@ -366,6 +394,15 @@ int _spawnlp(int flags, const char* name, const char* arg0, ...)
}
/*********************************************************************
* _spawnlpe (MSVCRT.@)
*/
int
_spawnlpe
(
int
flags
,
const
char
*
name
,
const
char
*
arg0
,
...)
{
FIXME
(
"stub
\n
"
);
return
-
1
;
}
/*********************************************************************
* _spawnve (MSVCRT.@)
*
* Like on Windows, this function does not handle arguments with spaces
...
...
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