Function windows::Win32::System::Threading::CreateProcessA

pub unsafe fn CreateProcessA<P0, P1, P2>(
    lpapplicationname: P0,
    lpcommandline: PSTR,
    lpprocessattributes: Option<*const SECURITY_ATTRIBUTES>,
    lpthreadattributes: Option<*const SECURITY_ATTRIBUTES>,
    binherithandles: P1,
    dwcreationflags: PROCESS_CREATION_FLAGS,
    lpenvironment: Option<*const c_void>,
    lpcurrentdirectory: P2,
    lpstartupinfo: *const STARTUPINFOA,
    lpprocessinformation: *mut PROCESS_INFORMATION,
) -> Result<()>
where P0: Param<PCSTR>, P1: Param<BOOL>, P2: Param<PCSTR>,