- Timestamp:
- Jan 14, 2009 1:19:52 PM (16 years ago)
- Location:
- trunk/src/VBox/Devices
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/audio.c
r11269 r15941 203 203 204 204 s = &glob_audio_state; 205 return s->pDrvIns->pDrvHlp->pfnTMGetVirtualTime (s->pDrvIns);205 return PDMDrvHlpTMGetVirtualTime (s->pDrvIns); 206 206 } 207 207 … … 211 211 212 212 s = &glob_audio_state; 213 return s->pDrvIns->pDrvHlp->pfnTMGetVirtualFreq (s->pDrvIns);213 return PDMDrvHlpTMGetVirtualFreq (s->pDrvIns); 214 214 } 215 215 … … 1626 1626 LIST_INIT (&s->cap_head); 1627 1627 1628 rc = pDrvIns->pDrvHlp->pfnTMTimerCreate (pDrvIns, TMCLOCK_VIRTUAL,1629 1628 rc = PDMDrvHlpTMTimerCreate (pDrvIns, TMCLOCK_VIRTUAL, 1629 audio_timer_helper, "Audio timer", &s->ts); 1630 1630 if (RT_FAILURE (rc)) 1631 1631 return rc; -
trunk/src/VBox/Devices/Input/DrvKeyboardQueue.cpp
r11286 r15941 319 319 } 320 320 321 rc = pDrvIns->pDrvHlp->pfnPDMQueueCreate(pDrvIns, sizeof(DRVKBDQUEUEITEM), cItems, cMilliesInterval, drvKbdQueueConsumer, &pDrv->pQueue);321 rc = PDMDrvHlpPDMQueueCreate(pDrvIns, sizeof(DRVKBDQUEUEITEM), cItems, cMilliesInterval, drvKbdQueueConsumer, &pDrv->pQueue); 322 322 if (RT_FAILURE(rc)) 323 323 { -
trunk/src/VBox/Devices/Input/DrvMouseQueue.cpp
r11286 r15941 305 305 } 306 306 307 rc = pDrvIns->pDrvHlp->pfnPDMQueueCreate(pDrvIns, sizeof(DRVMOUSEQUEUEITEM), cItems, cMilliesInterval, drvMouseQueueConsumer, &pDrv->pQueue);307 rc = PDMDrvHlpPDMQueueCreate(pDrvIns, sizeof(DRVMOUSEQUEUEITEM), cItems, cMilliesInterval, drvMouseQueueConsumer, &pDrv->pQueue); 308 308 if (RT_FAILURE(rc)) 309 309 { -
trunk/src/VBox/Devices/Network/DrvNAT.cpp
r15914 r15941 815 815 } 816 816 817 rc = pDrvIns->pDrvHlp->pfnPDMQueueCreate(pDrvIns, sizeof(DRVNATQUEUITEM), 50, 0, drvNATQueueConsumer, &pThis->pSendQueue);817 rc = PDMDrvHlpPDMQueueCreate(pDrvIns, sizeof(DRVNATQUEUITEM), 50, 0, drvNATQueueConsumer, &pThis->pSendQueue); 818 818 if (RT_FAILURE(rc)) 819 819 {
Note:
See TracChangeset
for help on using the changeset viewer.