[DllImport("rapi.dll", CharSet=CharSet.Unicode)]
public static extern int CeCreateProcess(
string applicationName,
string commandLineArgs,
long dwNull0,
long dwNull1,
bool False,
long dwCreationFlags,
long dwNull2,
long dwNull3,
long dwNull4,
PROCESS_INFORMATION processInfo);
PROCESS_INFORMATION structure info at http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wcekernl/html/_ wcesdk_win32_PROCESS_INFORMATION_str.asp
function info on msdn at http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wceactsy/html/cerefCeCreateProcessRAPI.asp
Please add some!
CeCreateProcess("myapp.exe","",0,0,false,0,0,0,0,new PROCESS_INFORMATION());