Commit 676164cc authored by Kirill Smelkov's avatar Kirill Smelkov Committed by Alexandre Julliard

Added _execle/_execlpe & _spawnle/_spawnlpe stubs.

parent 55b51eab
......@@ -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)
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment