Changeset 1480 for trunk/dll/valid.c
- Timestamp:
- Nov 22, 2009, 11:58:49 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/valid.c
r1444 r1480 35 35 When these high codes were it text files they showed as hex in new view. 36 36 08 Mar 09 GKY Additional strings move to PCSZs 37 12 Jul 09 GKY Add xDosQueryAppType and xDo xAlloc... to allow FM/2 to load in high memory37 12 Jul 09 GKY Add xDosQueryAppType and xDosAlloc... to allow FM/2 to load in high memory 38 38 22 Jul 09 GKY Consolidated driveflag setting code in DriveFlagsOne 39 39 22 Jul 09 GKY Check if drives support EAs add driveflag for this … … 600 600 } 601 601 602 BOOL IsExecutable(CHAR * 602 BOOL IsExecutable(CHAR *filename) 603 603 { 604 604 register CHAR *p; … … 610 610 p = strrchr(filename, '.'); 611 611 if (p) 612 ret = xDosQueryAppType(filename, &apptype);612 ret = DosQueryAppType(filename, &apptype); 613 613 else { 614 614 … … 617 617 strcpy(fname, filename); 618 618 strcat(fname, "."); 619 ret = xDosQueryAppType(fname, &apptype);619 ret = DosQueryAppType(fname, &apptype); 620 620 } 621 621 if (apptype & (FAPPTYP_DLL |
Note:
See TracChangeset
for help on using the changeset viewer.