Changeset 1846 for trunk/dll/cmdline.c
- Timestamp:
- Aug 12, 2015, 10:31:54 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/cmdline.c
r1750 r1846 30 30 23 Oct 10 GKY Changes to populate and utilize a HELPTABLE for context specific help 31 31 28 Apr 14 JBS Ticket #522: Ensure use of wrapper functions where needed 32 12 Aug 15 JBS Ticket #524: Ensure no "highmem-unsafe" functions are called directly 33 Calls to unsafe Dos... functions have been changed to call the wrapped xDos... functions 32 34 33 35 ***********************************************************************/ … … 405 407 { 406 408 ULONG apptype = 0L; 407 // Change DosQueryAppType to xDosQueryAppType if "executable"is no longer local408 409 CHAR executable[CCHMAXPATH], commandline[1001], *p; 409 410 … … 449 450 } 450 451 } 451 if ( DosQueryAppType(executable, &apptype) ||452 if (xDosQueryAppType(executable, &apptype) || 452 453 (apptype && !(apptype & 453 454 (FAPPTYP_NOTWINDOWCOMPAT |
Note:
See TracChangeset
for help on using the changeset viewer.