Changeset 1627 for trunk/dll/saveclip.c
- Timestamp:
- Aug 26, 2011, 11:48:06 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/saveclip.c
r1544 r1627 32 32 12 Jul 09 GKY Add xDosQueryAppType and xDosAlloc... to allow FM/2 to load in high memory 33 33 29 May 10 GKY Fix SaveListDlgProc to append to a file when Append checkbox is selected 34 26 Aug 11 GKY Add a low mem version of xDosAlloc* wrappers; move error checking into all the 35 xDosAlloc* wrappers. 34 36 35 37 ***********************************************************************/ … … 102 104 if (clip) 103 105 len += strlen(clip) + 1; 104 105 OBJ_GIVEABLE | PAG_READ | PAG_WRITE)) {106 if (!xDosAllocSharedMem((PPVOID) &hold, (PSZ) NULL, len, PAG_COMMIT | 107 OBJ_GIVEABLE | PAG_READ | PAG_WRITE, __FILE__, __LINE__)) { 106 108 *hold = 0; 107 109 if (clip)
Note:
See TracChangeset
for help on using the changeset viewer.