Changeset 1628 for trunk/dll/systemf.c
- Timestamp:
- Aug 27, 2011, 9:35:39 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/systemf.c
r1627 r1628 770 770 hwnd = HWND_DESKTOP; 771 771 772 if (xDosAllocMemLow((PVOID)&pszPgm, 773 MaxComLineStrg, 774 PAG_COMMIT | PAG_READ | PAG_WRITE, 775 pszSrcFile,__LINE__)) 772 if (xDosAllocMemLow((PVOID)&pszPgm, MaxComLineStrg, pszSrcFile,__LINE__)) 776 773 return -1; //already complained 777 774 *szSavedir = 0; … … 815 812 temp = *p; 816 813 if (temp) { 817 if (xDosAllocMemLow((PVOID)&pszArgs, MaxComLineStrg * 2, 818 PAG_COMMIT | PAG_READ | PAG_WRITE, 819 pszSrcFile, __LINE__)) { 814 if (xDosAllocMemLow((PVOID)&pszArgs, MaxComLineStrg * 2, pszSrcFile, __LINE__)) { 820 815 DosFreeMem(pszPgm); 821 816 return -1; //already complained … … 958 953 if (~type & FULLSCREEN) 959 954 type |= WINDOWED; 960 if (xDosAllocMemLow((PVOID) &pszArgs, MaxComLineStrg * 2, 961 PAG_COMMIT | PAG_READ | PAG_WRITE, 962 pszSrcFile, __LINE__)) { 955 if (xDosAllocMemLow((PVOID) &pszArgs, MaxComLineStrg * 2, pszSrcFile, __LINE__)) { 963 956 DosFreeMem(pszPgm); 964 957 return -1; //already complained
Note:
See TracChangeset
for help on using the changeset viewer.