Changeset 110 for trunk/src/helpers/dosh2.c
- Timestamp:
- Oct 15, 2001, 11:17:25 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/helpers/dosh2.c
r108 r110 2255 2255 2256 2256 // get the PATH value 2257 P SZ pszPath;2257 PCSZ pcszPathValue; 2258 2258 if (!(arc = DosScanEnv((PSZ)pcszPath, 2259 &pszPath))) 2259 #if __cplusplus 2260 &pcszPathValue))) 2261 #else 2262 (PSZ*)&pcszPathValue))) 2263 #endif 2260 2264 { 2261 2265 // run thru the path components 2262 2266 PSZ pszPathCopy; 2263 if (pszPathCopy = strdup(p szPath))2267 if (pszPathCopy = strdup(pcszPathValue)) 2264 2268 { 2265 2269 PSZ pszToken = strtok(pszPathCopy, ";"); 2266 while (pszToken) // V0.9.12 (2001-05-03) [umoeller]2270 while (pszToken) 2267 2271 { 2268 2272 CHAR szFileMask[2*CCHMAXPATH];
Note:
See TracChangeset
for help on using the changeset viewer.