Initial source commit
This commit is contained in:
commit
f1384c11ee
335 changed files with 52715 additions and 0 deletions
29
minorGems/system/win32/LauncherWin32.cpp
Normal file
29
minorGems/system/win32/LauncherWin32.cpp
Normal file
|
@ -0,0 +1,29 @@
|
|||
/*
|
||||
* Modification History
|
||||
*
|
||||
* 2003-January-10 Jason Rohrer
|
||||
* Created.
|
||||
*
|
||||
* 2003-March-24 Jason Rohrer
|
||||
* Fixed a syntax typo.
|
||||
*/
|
||||
|
||||
|
||||
|
||||
#include "minorGems/system/Launcher.h"
|
||||
|
||||
#include <windows.h>
|
||||
#include <process.h>
|
||||
|
||||
|
||||
|
||||
void Launcher::launchCommand( char *inCommandName,
|
||||
char **inArguments ) {
|
||||
|
||||
_spawnvp( _P_NOWAIT,
|
||||
inCommandName,
|
||||
inArguments );
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue