CreateShellArgV
Create a null-terminated array of strings from a command-line string
Declaration
Source position: genfunch.inc line 17
function CreateShellArgV(const prog: string) : ppchar;
function CreateShellArgV(const prog: RawByteString) : ppchar;
Description
CreateShellArgV creates a command-line string for executing a shell command using 'sh -c'. The result is a null-terminated array of null-terminated strings suitable for use in fpExecv and friends.
Errors
If no more memory is available, a heap error may occur.
See also
| Name | Description |
|---|---|
| fpExecv | Execute process |
| FreeShellArgV | Free the result of a CreateShellArgV function |