Changeset 88923 in vbox for trunk/src/VBox/Devices/Audio/DrvHostAudioOss.cpp
- Timestamp:
- May 7, 2021 1:34:51 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DrvHostAudioOss.cpp
r88887 r88923 28 28 29 29 #include <iprt/alloc.h> 30 #include <iprt/thread.h> 30 31 #include <iprt/uuid.h> /* For PDMIBASE_2_PDMDRV. */ 31 32 … … 35 36 #include <VBox/vmm/pdmaudioinline.h> 36 37 37 #include "VBoxDD.h" 38 #ifdef VBOX_AUDIO_VKAT 39 # include "VBoxDDVKAT.h" 40 #else 41 # include "VBoxDD.h" 42 #endif 38 43 39 44 … … 880 885 } 881 886 887 #ifndef VBOX_AUDIO_VKAT 882 888 /** 883 889 * Char driver registration record. … … 930 936 PDM_DRVREG_VERSION 931 937 }; 932 938 #else 939 const PDMDRVREG g_DrvVKATOSS = 940 { 941 /* cbInstance */ 942 sizeof(DRVHOSTOSSAUDIO), 943 drvHostOSSAudioConstruct, 944 /* pfnDestruct */ 945 NULL 946 }; 947 #endif 948
Note:
See TracChangeset
for help on using the changeset viewer.