CommandLineToArgv function shell32

Pointer<Pointer<Utf16>> CommandLineToArgv(
  1. Pointer<Utf16> lpCmdLine,
  2. Pointer<Int32> pNumArgs
)

Retrieves the command-line string for the current process.

LPWSTR CommandLineToArgvW(
  LPCWSTR lpCmdLine,
  int     *pNumArgs
);

Implementation

Pointer<Pointer<Utf16>> CommandLineToArgv(
        Pointer<Utf16> lpCmdLine, Pointer<Int32> pNumArgs) =>
    _CommandLineToArgv(lpCmdLine, pNumArgs);