Changeset 87767 in vbox for trunk/include/VBox
- Timestamp:
- Feb 16, 2021 4:41:18 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/tm.h
r87766 r87767 171 171 * 172 172 * @param pDevIns Device instance of the device which registered the timer. 173 * @param pTimer The timer handle.173 * @param hTimer The timer handle. 174 174 * @param pvUser User argument specified upon timer creation. 175 175 */ 176 typedef DECLCALLBACKTYPE(void, FNTMTIMERDEV,(PPDMDEVINS pDevIns, PTMTIMER pTimer, void *pvUser));176 typedef DECLCALLBACKTYPE(void, FNTMTIMERDEV,(PPDMDEVINS pDevIns, TMTIMERHANDLE hTimer, void *pvUser)); 177 177 /** Pointer to a device timer callback function. */ 178 178 typedef FNTMTIMERDEV *PFNTMTIMERDEV; … … 183 183 * @param pUsbIns The USB device instance the timer is associated 184 184 * with. 185 * @param pTimer The timer handle.185 * @param hTimer The timer handle. 186 186 * @param pvUser User argument specified upon timer creation. 187 187 */ 188 typedef DECLCALLBACKTYPE(void, FNTMTIMERUSB,(PPDMUSBINS pUsbIns, PTMTIMER pTimer, void *pvUser));188 typedef DECLCALLBACKTYPE(void, FNTMTIMERUSB,(PPDMUSBINS pUsbIns, TMTIMERHANDLE hTimer, void *pvUser)); 189 189 /** Pointer to a timer callback for a USB device. */ 190 190 typedef FNTMTIMERUSB *PFNTMTIMERUSB; … … 194 194 * 195 195 * @param pDrvIns Device instance of the device which registered the timer. 196 * @param pTimer The timer handle.196 * @param hTimer The timer handle. 197 197 * @param pvUser User argument specified upon timer creation. 198 198 */ 199 typedef DECLCALLBACKTYPE(void, FNTMTIMERDRV,(PPDMDRVINS pDrvIns, PTMTIMER pTimer, void *pvUser));199 typedef DECLCALLBACKTYPE(void, FNTMTIMERDRV,(PPDMDRVINS pDrvIns, TMTIMERHANDLE hTimer, void *pvUser)); 200 200 /** Pointer to a driver timer callback function. */ 201 201 typedef FNTMTIMERDRV *PFNTMTIMERDRV; … … 205 205 * 206 206 * @param pSrvIns Service instance of the device which registered the timer. 207 * @param pTimer The timer handle.208 */ 209 typedef DECLCALLBACKTYPE(void, FNTMTIMERSRV,(PPDMSRVINS pSrvIns, PTMTIMER pTimer));207 * @param hTimer The timer handle. 208 */ 209 typedef DECLCALLBACKTYPE(void, FNTMTIMERSRV,(PPDMSRVINS pSrvIns, TMTIMERHANDLE hTimer)); 210 210 /** Pointer to a service timer callback function. */ 211 211 typedef FNTMTIMERSRV *PFNTMTIMERSRV;
Note:
See TracChangeset
for help on using the changeset viewer.