pPaths
NULL-terminated array of up to 32 char* pointers that contain the file paths in the order given by PRAGMA_PATH or add_folder().
Type:
char**
Remarks:
- This pointer array can be used to determine the file paths by external DLLs.
Example:
char** c;
for (c = pPaths; *c != NULL; c++)
printf("Path: %s\n",*c);
See also:
PRAGMA_PATH, add_folder
► latest
version online