Ignore:
Timestamp:
Jul 28, 2003, 1:35:32 PM (22 years ago)
Author:
sandervl
Message:

Updates

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/pmwindow.cpp

    r10136 r10185  
    1 /* $Id: pmwindow.cpp,v 1.216 2003-06-03 11:58:37 sandervl Exp $ */
     1/* $Id: pmwindow.cpp,v 1.217 2003-07-28 11:27:47 sandervl Exp $ */
    22/*
    33 * Win32 Window Managment Code for OS/2
     
    5252#include <pmscan.h>
    5353#include <winscan.h>
     54#include <oslibdnd.h>
    5455#include <win\dbt.h>
    5556#include "dragdrop.h"
     
    10591060            rc = (MRFROM2SHORT (DOR_NEVERDROP, 0));
    10601061        }
     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;
    10611094        break;
    10621095    }
     
    22842317    cItems = DrgQueryDragitemCount(pDragInfo);
    22852318
    2286     //computer memory required to hold all filenames
     2319    //compute memory required to hold all filenames
    22872320    int bufsize = 0;
    22882321    for (i = 0; i < cItems; i++) {
Note: See TracChangeset for help on using the changeset viewer.