Changeset 229 for trunk/src/helpers/dosh2.c
- Timestamp:
- Nov 24, 2002, 9:45:05 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/helpers/dosh2.c
r222 r229 412 412 * 413 413 *@@added V0.9.16 (2001-10-08) [umoeller] 414 */ 415 416 APIRET doshSearchPath(const char *pcszPath, // in: path variable name (e.g. "PATH") 414 *@@changed V1.0.0 (2002-11-23) [umoeller]: allowing NULL pcszPath to search for "PATH" 415 */ 416 417 APIRET doshSearchPath(const char *pcszPath, // in: path variable name; if NULL, we use "PATH" 417 418 const char *pcszFile, // in: file to look for (e.g. "LVM.EXE") 418 419 PSZ pszExecutable, // out: full path (e.g. "F:\os2\lvm.exe") … … 423 424 // get the PATH value 424 425 PCSZ pcszPathValue; 426 427 if (!pcszPath) 428 pcszPath = "PATH"; // V1.0.0 (2002-11-23) [umoeller] 429 425 430 if (!(arc = DosScanEnv((PSZ)pcszPath, 426 431 #if __cplusplus
Note:
See TracChangeset
for help on using the changeset viewer.