GetStartupInfo function kernel32

void GetStartupInfo(
  1. Pointer<STARTUPINFO> lpStartupInfo
)

Retrieves the contents of the STARTUPINFO structure that was specified when the calling process was created.

To learn more, see learn.microsoft.com/windows/win32/api/processthreadsapi/nf-processthreadsapi-getstartupinfow.

Implementation

@pragma('vm:prefer-inline')
void GetStartupInfo(Pointer<STARTUPINFO> lpStartupInfo) =>
    _GetStartupInfo(lpStartupInfo);