Changeset 15941 in vbox for trunk/src/VBox/Devices/Audio
- Timestamp:
- Jan 14, 2009 1:19:52 PM (16 years ago)
- File:
-
- 1 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;
Note:
See TracChangeset
for help on using the changeset viewer.