Changeset 1439 for trunk/dll/valid.c
- Timestamp:
- Jul 12, 2009, 11:57:04 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/valid.c
r1438 r1439 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 xDoxAlloc... to allow FM/2 to load in high memory 37 38 38 39 ***********************************************************************/ … … 297 298 # define BUFFER_BYTES 8192 298 299 rc = xDosAllocMem(&pvBuffer, BUFFER_BYTES, 299 PAG_COMMIT | OBJ_TILE | PAG_READ | PAG_WRITE);300 PAG_COMMIT | PAG_READ | PAG_WRITE, pszSrcFile, __LINE__); 300 301 if (rc) { 301 302 Dos_Error(MB_CANCEL, rc, HWND_DESKTOP, pszSrcFile, __LINE__, … … 601 602 p = strrchr(filename, '.'); 602 603 if (p) 603 ret = DosQueryAppType(filename, &apptype);604 ret = xDosQueryAppType(filename, &apptype); 604 605 else { 605 606 … … 608 609 strcpy(fname, filename); 609 610 strcat(fname, "."); 610 ret = DosQueryAppType(fname, &apptype);611 ret = xDosQueryAppType(fname, &apptype); 611 612 } 612 613 if (apptype & (FAPPTYP_DLL |
Note:
See TracChangeset
for help on using the changeset viewer.