WinCE only. ShellExecute is now in the shunt lib, so I can remove a WINCE #define. Also, for process creation WinCE uses NSPR like a good child.... i wonder why the other platforms don't as well.

git-svn-id: svn://10.0.0.236/trunk@179552 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
dougt%meer.net
2005-09-02 18:00:23 +00:00
parent e0adcb19f9
commit 8c4e2f1dda
2 changed files with 1 additions and 3 deletions

View File

@@ -236,7 +236,7 @@ nsProcess::Run(PRBool blocking, const char **args, PRUint32 count,
// null terminate the array
my_argv[count+1] = NULL;
#if defined(XP_WIN)
#if defined(XP_WIN) && !defined (WINCE) /* wince uses nspr */
STARTUPINFO startupInfo;
PROCESS_INFORMATION procInfo;
BOOL retVal;