Changeset 85121 in vbox for trunk/src/VBox/Main/src-client
- Timestamp:
- Jul 8, 2020 7:33:26 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 139061
- Location:
- trunk/src/VBox/Main/src-client
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/DisplayImpl.cpp
r85015 r85121 1763 1763 } 1764 1764 1765 /* static */1766 intDisplay::i_displayTakeScreenshotEMT(Display *pDisplay, ULONG aScreenId, uint8_t **ppbData, size_t *pcbData,1767 1765 /*static*/ DECLCALLBACK(int) 1766 Display::i_displayTakeScreenshotEMT(Display *pDisplay, ULONG aScreenId, uint8_t **ppbData, size_t *pcbData, 1767 uint32_t *pcx, uint32_t *pcy, bool *pfMemFree) 1768 1768 { 1769 1769 int rc; … … 2147 2147 #endif /* VBOX_WITH_RECORDING */ 2148 2148 2149 int Display::i_drawToScreenEMT(Display *pDisplay, ULONG aScreenId, BYTE *address, 2150 2149 /*static*/ DECLCALLBACK(int) 2150 Display::i_drawToScreenEMT(Display *pDisplay, ULONG aScreenId, BYTE *address, ULONG x, ULONG y, ULONG width, ULONG height) 2151 2151 { 2152 2152 int rc = VINF_SUCCESS; … … 2312 2312 } 2313 2313 2314 intDisplay::i_InvalidateAndUpdateEMT(Display *pDisplay, unsigned uId, bool fUpdateAll)2314 /*static*/ DECLCALLBACK(int) Display::i_InvalidateAndUpdateEMT(Display *pDisplay, unsigned uId, bool fUpdateAll) 2315 2315 { 2316 2316 LogRelFlowFunc(("uId=%d, fUpdateAll %d\n", uId, fUpdateAll)); -
trunk/src/VBox/Main/src-client/HGCMThread.cpp
r82968 r85121 146 146 int MsgAlloc(HGCMMsgCore **pMsg, uint32_t u32MsgId, PFNHGCMNEWMSGALLOC pfnNewMessage); 147 147 int MsgGet(HGCMMsgCore **ppMsg); 148 int MsgPost(HGCMMsgCore *pMsg, P HGCMMSGCALLBACK pfnCallback, bool bWait);148 int MsgPost(HGCMMsgCore *pMsg, PFNHGCMMSGCALLBACK pfnCallback, bool bWait); 149 149 int MsgComplete(HGCMMsgCore *pMsg, int32_t result); 150 150 }; … … 400 400 } 401 401 402 int HGCMThread::MsgPost(HGCMMsgCore *pMsg, P HGCMMSGCALLBACK pfnCallback, bool fWait)402 int HGCMThread::MsgPost(HGCMMsgCore *pMsg, PFNHGCMMSGCALLBACK pfnCallback, bool fWait) 403 403 { 404 404 LogFlow(("HGCMThread::MsgPost: thread = %p, pMsg = %p, pfnCallback = %p\n", this, pMsg, pfnCallback)); … … 694 694 } 695 695 696 DECLINLINE(int) hgcmMsgPostInternal(HGCMMsgCore *pMsg, P HGCMMSGCALLBACK pfnCallback, bool fWait)696 DECLINLINE(int) hgcmMsgPostInternal(HGCMMsgCore *pMsg, PFNHGCMMSGCALLBACK pfnCallback, bool fWait) 697 697 { 698 698 LogFlow(("MAIN::hgcmMsgPostInternal: pMsg = %p, pfnCallback = %p, fWait = %d\n", pMsg, pfnCallback, fWait)); … … 709 709 } 710 710 711 int hgcmMsgPost(HGCMMsgCore *pMsg, P HGCMMSGCALLBACK pfnCallback)711 int hgcmMsgPost(HGCMMsgCore *pMsg, PFNHGCMMSGCALLBACK pfnCallback) 712 712 { 713 713 int rc = hgcmMsgPostInternal(pMsg, pfnCallback, false); -
trunk/src/VBox/Main/src-client/UsbCardReader.cpp
r82968 r85121 595 595 } 596 596 597 static intdrvCardReaderWakeupFunc(PUSBCARDREADER pThis)597 static DECLCALLBACK(int) drvCardReaderWakeupFunc(PUSBCARDREADER pThis) 598 598 { 599 599 NOREF(pThis);
Note:
See TracChangeset
for help on using the changeset viewer.