Changeset 10185 for trunk/src/user32/pmwindow.cpp
- Timestamp:
- Jul 28, 2003, 1:35:32 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/pmwindow.cpp
r10136 r10185 1 /* $Id: pmwindow.cpp,v 1.21 6 2003-06-03 11:58:37 sandervl Exp $ */1 /* $Id: pmwindow.cpp,v 1.217 2003-07-28 11:27:47 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Managment Code for OS/2 … … 52 52 #include <pmscan.h> 53 53 #include <winscan.h> 54 #include <oslibdnd.h> 54 55 #include <win\dbt.h> 55 56 #include "dragdrop.h" … … 1059 1060 rc = (MRFROM2SHORT (DOR_NEVERDROP, 0)); 1060 1061 } 1062 break; 1063 } 1064 1065 case DM_RENDER: 1066 { 1067 PDRAGTRANSFER pDragTransfer = (PDRAGTRANSFER)mp1; 1068 1069 dprintf(("OS2: DM_RENDER %x", pDragTransfer)); 1070 1071 rc = (MRESULT)OSLibRenderFormat(pDragTransfer); 1072 break; 1073 } 1074 1075 case DM_RENDERPREPARE: 1076 { 1077 PDRAGTRANSFER pDragTransfer = (PDRAGTRANSFER)mp1; 1078 1079 dprintf(("OS2: DM_RENDERPREPARE %x", pDragTransfer)); 1080 break; 1081 } 1082 1083 case DM_ENDCONVERSATION: 1084 { 1085 dprintf(("OS2: DM_ENDCONVERSATION")); 1086 rc = (MRESULT)OSLibEndConversation(); 1087 break; 1088 } 1089 1090 case DM_RENDERFILE: 1091 { 1092 dprintf(("OS2: DM_ENDCONVERSATION")); 1093 rc = FALSE; 1061 1094 break; 1062 1095 } … … 2284 2317 cItems = DrgQueryDragitemCount(pDragInfo); 2285 2318 2286 //compute rmemory required to hold all filenames2319 //compute memory required to hold all filenames 2287 2320 int bufsize = 0; 2288 2321 for (i = 0; i < cItems; i++) {
Note:
See TracChangeset
for help on using the changeset viewer.