UlteriusServer.Api.Win32.Desktop.CreateProcess C# (CSharp) Method

CreateProcess() private method

private CreateProcess ( string lpApplicationName, string lpCommandLine, IntPtr lpProcessAttributes, IntPtr lpThreadAttributes, bool bInheritHandles, int dwCreationFlags, IntPtr lpEnvironment, string lpCurrentDirectory, STARTUPINFO &lpStartupInfo, PROCESS_INFORMATION &lpProcessInformation ) : bool
lpApplicationName string
lpCommandLine string
lpProcessAttributes System.IntPtr
lpThreadAttributes System.IntPtr
bInheritHandles bool
dwCreationFlags int
lpEnvironment System.IntPtr
lpCurrentDirectory string
lpStartupInfo STARTUPINFO
lpProcessInformation PROCESS_INFORMATION
return bool
        private static extern bool CreateProcess(
            string lpApplicationName,
            string lpCommandLine,
            IntPtr lpProcessAttributes,
            IntPtr lpThreadAttributes,
            bool bInheritHandles,
            int dwCreationFlags,
            IntPtr lpEnvironment,
            string lpCurrentDirectory,
            ref STARTUPINFO lpStartupInfo,
            ref PROCESS_INFORMATION lpProcessInformation
            );

Same methods

Desktop::CreateProcess ( string path ) : Process
Desktop::CreateProcess ( string path, string desktop ) : Process