Changeset 45136 in vbox for trunk/src/VBox/Devices/Audio
- Timestamp:
- Mar 22, 2013 10:22:57 AM (12 years ago)
- Location:
- trunk/src/VBox/Devices/Audio
- Files:
-
- 2 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/alsa_stubs.c
r34451 r45136 31 31 static rettype (*pfn_ ## function) signature; \ 32 32 \ 33 rettype function signature \ 33 rettype VBox_##function signature; \ 34 rettype VBox_##function signature \ 34 35 { \ 35 36 return pfn_ ## function shortsig; \ -
trunk/src/VBox/Devices/Audio/alsaaudio.c
r40844 r45136 30 30 #endif 31 31 32 #ifdef VBOX 33 # include "alsa_stubs.h" 34 # include "alsa_mangling.h" 35 #endif 36 32 37 #include <alsa/asoundlib.h> 33 38 … … 35 40 #include "vl_vbox.h" 36 41 #include "audio.h" 37 #ifdef VBOX38 #include "alsa_stubs.h"39 #endif40 42 #include <iprt/alloc.h> 41 43 -
trunk/src/VBox/Devices/Audio/pulse_stubs.c
r28800 r45136 31 31 static rettype (*g_pfn_ ## function) signature; \ 32 32 \ 33 rettype function signature \ 33 rettype VBox_##function signature; \ 34 rettype VBox_##function signature \ 34 35 { \ 35 36 return g_pfn_ ## function shortsig; \ … … 39 40 static void (*g_pfn_ ## function) signature; \ 40 41 \ 41 void function signature \ 42 void VBox_##function signature; \ 43 void VBox_##function signature \ 42 44 { \ 43 45 g_pfn_ ## function shortsig; \ -
trunk/src/VBox/Devices/Audio/pulseaudio.c
r44528 r45136 24 24 #include <iprt/mem.h> 25 25 26 #include "pulse_mangling.h" 27 #include "pulse_stubs.h" 26 28 #include <pulse/pulseaudio.h> 27 #include "pulse_stubs.h"28 29 29 30 #include "vl_vbox.h"
Note:
See TracChangeset
for help on using the changeset viewer.