- Timestamp:
- Feb 15, 2002, 2:57:40 PM (24 years ago)
- Location:
- trunk/src/ole32
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/ole32/clipboard.c
r7788 r7909 1201 1201 BOOL bClipboardOpen = FALSE; 1202 1202 HRESULT hr = S_OK; 1203 LPVOID src; 1203 1204 1204 1205 /* … … 1241 1242 1242 1243 #ifdef __WIN32OS2__ 1243 { 1244 //must make a copy of global handle returned by GetClipboardData; it 1245 //is not valid after we call CloseClipboard 1246 //Application is responsible for freeing the memory (Forte Agent does this) 1247 LPVOID src; 1248 LPVOID dest; 1249 ULONG size; 1250 HANDLE hDest; 1251 1244 /* Must make a copy of global handle returned by GetClipboardData; it 1245 * is not valid after we call CloseClipboard 1246 * Application is responsible for freeing the memory (Forte Agent does this) 1247 */ 1252 1248 src = GlobalLock(hData); 1253 1249 if(src) { 1250 LPVOID dest; 1251 ULONG size; 1252 HANDLE hDest; 1253 1254 1254 size = GlobalSize(hData); 1255 1255 hDest = GlobalAlloc(GHND, size); … … 1260 1260 hData = hDest; 1261 1261 } 1262 }1263 1262 #endif 1264 1263 -
trunk/src/ole32/ole32.mak
r7397 r7909 1 # $Id: ole32.mak,v 1.1 5 2001-11-19 12:33:09sandervl Exp $1 # $Id: ole32.mak,v 1.16 2002-02-15 13:57:40 sandervl Exp $ 2 2 3 3 # … … 14 14 MAKEFILE = ole32.mak 15 15 16 !if "$(DEBUG)" == "1" 17 DEFFILE = ole32dbg.def 18 ORGDEFFILE = ole32.def 19 !endif 16 20 17 21 # … … 61 65 $(OBJDIR)\stubs.obj \ 62 66 $(OBJDIR)\ifs.obj \ 67 !if "$(DEBUG)" == "1" 68 $(OBJDIR)\dbgwrap.obj \ 69 !endif 63 70 $(OBJDIR)\ole32rsrc.obj 64 71
Note:
See TracChangeset
for help on using the changeset viewer.