Changeset 85121 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Jul 8, 2020 7:33:26 PM (4 years ago)
- Location:
- trunk/src/VBox/Main/include
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/DisplayImpl.h
r84740 r85121 410 410 public: 411 411 412 static inti_displayTakeScreenshotEMT(Display *pDisplay, ULONG aScreenId, uint8_t **ppbData, size_t *pcbData,413 uint32_t *pcx, uint32_t *pcy, bool *pfMemFree);412 static DECLCALLBACK(int) i_displayTakeScreenshotEMT(Display *pDisplay, ULONG aScreenId, uint8_t **ppbData, size_t *pcbData, 413 uint32_t *pcx, uint32_t *pcy, bool *pfMemFree); 414 414 415 415 private: 416 static int i_InvalidateAndUpdateEMT(Display *pDisplay, unsigned uId, bool fUpdateAll); 417 static int i_drawToScreenEMT(Display *pDisplay, ULONG aScreenId, BYTE *address, ULONG x, ULONG y, ULONG width, ULONG height); 416 static DECLCALLBACK(int) i_InvalidateAndUpdateEMT(Display *pDisplay, unsigned uId, bool fUpdateAll); 417 static DECLCALLBACK(int) i_drawToScreenEMT(Display *pDisplay, ULONG aScreenId, BYTE *address, ULONG x, ULONG y, 418 ULONG width, ULONG height); 418 419 419 420 void i_updateGuestGraphicsFacility(void); -
trunk/src/VBox/Main/include/GuestDnDPrivate.h
r85018 r85121 953 953 954 954 /** Guest DnD callback function definition. */ 955 typedef DECLCALLBACKPTR(int, PFNGUESTDNDCALLBACK ) (uint32_t uMsg, void *pvParms, size_t cbParms, void *pvUser);955 typedef DECLCALLBACKPTR(int, PFNGUESTDNDCALLBACK,(uint32_t uMsg, void *pvParms, size_t cbParms, void *pvUser)); 956 956 957 957 /** -
trunk/src/VBox/Main/include/HGCMThread.h
r82968 r85121 55 55 * (shouldn't happen). 56 56 */ 57 typedef DECLCALLBACK (int) HGCMMSGCALLBACK(int32_t result, HGCMMsgCore *pMsgCore);57 typedef DECLCALLBACKTYPE(int, FNHGCMMSGCALLBACK,(int32_t result, HGCMMsgCore *pMsgCore)); 58 58 /** Pointer to a message completeion callback function. */ 59 typedef HGCMMSGCALLBACK *PHGCMMSGCALLBACK;59 typedef FNHGCMMSGCALLBACK *PFNHGCMMSGCALLBACK; 60 60 61 61 … … 76 76 77 77 /** Callback function pointer. */ 78 P HGCMMSGCALLBACK m_pfnCallback;78 PFNHGCMMSGCALLBACK m_pfnCallback; 79 79 80 80 /** Next element in a message queue. */ … … 115 115 * @param pvUser User specified thread parameter. 116 116 */ 117 typedef DECLCALLBACK (void) FNHGCMTHREAD(HGCMThread *pThread, void *pvUser);117 typedef DECLCALLBACKTYPE(void, FNHGCMTHREAD,(HGCMThread *pThread, void *pvUser)); 118 118 typedef FNHGCMTHREAD *PFNHGCMTHREAD; 119 119 … … 179 179 * @thread any 180 180 */ 181 int hgcmMsgPost(HGCMMsgCore *pMsg, P HGCMMSGCALLBACK pfnCallback);181 int hgcmMsgPost(HGCMMsgCore *pMsg, PFNHGCMMSGCALLBACK pfnCallback); 182 182 183 183 /** Send a message to HGCM worker thread. -
trunk/src/VBox/Main/include/MachineDebuggerImpl.h
r82968 r85121 141 141 142 142 /** RTLogGetFlags, RTLogGetGroupSettings and RTLogGetDestinations function. */ 143 typedef DECLCALLBACK (int) FNLOGGETSTR(PRTLOGGER, char *, size_t);143 typedef DECLCALLBACKTYPE(int, FNLOGGETSTR,(PRTLOGGER, char *, size_t)); 144 144 /** Function pointer. */ 145 145 typedef FNLOGGETSTR *PFNLOGGETSTR; -
trunk/src/VBox/Main/include/VirtualBoxImpl.h
r83169 r85121 146 146 147 147 #ifdef RT_OS_WINDOWS 148 typedef DECLCALLBACKPTR(HRESULT, SVCHelperClientFunc) 149 (SVCHlpClient *aClient, Progress *aProgress, void *aUser, int *aVrc); 148 typedef DECLCALLBACKPTR(HRESULT, SVCHelperClientFunc,(SVCHlpClient *aClient, Progress *aProgress, void *aUser, int *aVrc)); 150 149 HRESULT i_startSVCHelperClient(bool aPrivileged, 151 150 SVCHelperClientFunc aFunc,
Note:
See TracChangeset
for help on using the changeset viewer.