Changeset 85018 in vbox for trunk/src/VBox/Main/src-client/GuestDnDTargetImpl.cpp
- Timestamp:
- Jul 1, 2020 10:42:45 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestDnDTargetImpl.cpp
r84998 r85018 78 78 public: 79 79 80 SendDataTask(GuestDnDTarget *pTarget, PSENDDATACTXpCtx)80 SendDataTask(GuestDnDTarget *pTarget, GuestDnDSendCtx *pCtx) 81 81 : GuestDnDTargetTask(pTarget), 82 82 mpCtx(pCtx) … … 100 100 101 101 102 PSENDDATACTXgetCtx(void) { return mpCtx; }102 GuestDnDSendCtx *getCtx(void) { return mpCtx; } 103 103 104 104 protected: 105 105 106 106 /** Pointer to send data context. */ 107 PSENDDATACTXmpCtx;107 GuestDnDSendCtx *mpCtx; 108 108 }; 109 109 … … 633 633 634 634 SendDataTask *pTask = NULL; 635 PSENDDATACTXpSendCtx = NULL;635 GuestDnDSendCtx *pSendCtx = NULL; 636 636 637 637 try 638 638 { 639 639 //pSendCtx is passed into SendDataTask where one is deleted in destructor 640 pSendCtx = new SENDDATACTX;641 RT_BZERO(pSendCtx, sizeof( SENDDATACTX));640 pSendCtx = new GuestDnDSendCtx(); 641 RT_BZERO(pSendCtx, sizeof(GuestDnDSendCtx)); 642 642 643 643 pSendCtx->mpTarget = this; … … 762 762 * intentional or not. 763 763 */ 764 int GuestDnDTarget::i_sendData( PSENDDATACTXpCtx, RTMSINTERVAL msTimeout)764 int GuestDnDTarget::i_sendData(GuestDnDSendCtx *pCtx, RTMSINTERVAL msTimeout) 765 765 { 766 766 AssertPtrReturn(pCtx, VERR_INVALID_POINTER); … … 802 802 } 803 803 804 int GuestDnDTarget::i_sendDataBody( PSENDDATACTXpCtx, GuestDnDData *pData)804 int GuestDnDTarget::i_sendDataBody(GuestDnDSendCtx *pCtx, GuestDnDData *pData) 805 805 { 806 806 AssertPtrReturn(pCtx, VERR_INVALID_POINTER); … … 844 844 } 845 845 846 int GuestDnDTarget::i_sendDataHeader( PSENDDATACTXpCtx, GuestDnDData *pData, GuestDnDURIData *pURIData /* = NULL */)846 int GuestDnDTarget::i_sendDataHeader(GuestDnDSendCtx *pCtx, GuestDnDData *pData, GuestDnDURIData *pURIData /* = NULL */) 847 847 { 848 848 AssertPtrReturn(pCtx, VERR_INVALID_POINTER); … … 873 873 } 874 874 875 int GuestDnDTarget::i_sendDirectory( PSENDDATACTXpCtx, GuestDnDURIObjCtx *pObjCtx, GuestDnDMsg *pMsg)875 int GuestDnDTarget::i_sendDirectory(GuestDnDSendCtx *pCtx, GuestDnDURIObjCtx *pObjCtx, GuestDnDMsg *pMsg) 876 876 { 877 877 AssertPtrReturn(pCtx, VERR_INVALID_POINTER); … … 900 900 } 901 901 902 int GuestDnDTarget::i_sendFile( PSENDDATACTXpCtx, GuestDnDURIObjCtx *pObjCtx, GuestDnDMsg *pMsg)902 int GuestDnDTarget::i_sendFile(GuestDnDSendCtx *pCtx, GuestDnDURIObjCtx *pObjCtx, GuestDnDMsg *pMsg) 903 903 { 904 904 AssertPtrReturn(pCtx, VERR_INVALID_POINTER); … … 985 985 } 986 986 987 int GuestDnDTarget::i_sendFileData( PSENDDATACTXpCtx, GuestDnDURIObjCtx *pObjCtx, GuestDnDMsg *pMsg)987 int GuestDnDTarget::i_sendFileData(GuestDnDSendCtx *pCtx, GuestDnDURIObjCtx *pObjCtx, GuestDnDMsg *pMsg) 988 988 { 989 989 AssertPtrReturn(pCtx, VERR_INVALID_POINTER); … … 1065 1065 DECLCALLBACK(int) GuestDnDTarget::i_sendURIDataCallback(uint32_t uMsg, void *pvParms, size_t cbParms, void *pvUser) 1066 1066 { 1067 PSENDDATACTX pCtx = (PSENDDATACTX)pvUser;1067 GuestDnDSendCtx *pCtx = (GuestDnDSendCtx *)pvUser; 1068 1068 AssertPtrReturn(pCtx, VERR_INVALID_POINTER); 1069 1069 … … 1274 1274 } 1275 1275 1276 int GuestDnDTarget::i_sendURIData( PSENDDATACTXpCtx, RTMSINTERVAL msTimeout)1276 int GuestDnDTarget::i_sendURIData(GuestDnDSendCtx *pCtx, RTMSINTERVAL msTimeout) 1277 1277 { 1278 1278 AssertPtrReturn(pCtx, VERR_INVALID_POINTER); … … 1430 1430 } 1431 1431 1432 int GuestDnDTarget::i_sendURIDataLoop( PSENDDATACTXpCtx, GuestDnDMsg *pMsg)1432 int GuestDnDTarget::i_sendURIDataLoop(GuestDnDSendCtx *pCtx, GuestDnDMsg *pMsg) 1433 1433 { 1434 1434 AssertPtrReturn(pCtx, VERR_INVALID_POINTER); … … 1489 1489 } 1490 1490 1491 int GuestDnDTarget::i_sendRawData( PSENDDATACTXpCtx, RTMSINTERVAL msTimeout)1491 int GuestDnDTarget::i_sendRawData(GuestDnDSendCtx *pCtx, RTMSINTERVAL msTimeout) 1492 1492 { 1493 1493 AssertPtrReturn(pCtx, VERR_INVALID_POINTER);
Note:
See TracChangeset
for help on using the changeset viewer.