Added _execle/_execlpe & _spawnle/_spawnlpe stubs.
diff --git a/dlls/msvcrt/msvcrt.spec b/dlls/msvcrt/msvcrt.spec
index e12201e..c1b7644 100644
--- a/dlls/msvcrt/msvcrt.spec
+++ b/dlls/msvcrt/msvcrt.spec
@@ -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)
diff --git a/dlls/msvcrt/process.c b/dlls/msvcrt/process.c
index c343c7d..1f7e4a7 100644
--- a/dlls/msvcrt/process.c
+++ b/dlls/msvcrt/process.c
@@ -246,6 +246,15 @@
}
/*********************************************************************
+ * _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 @@
}
/*********************************************************************
+ * _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 @@
}
/*********************************************************************
+ * _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 @@
}
/*********************************************************************
+ * _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