Vuo  2.3.2
VuoAudioOutputDevice.h
Go to the documentation of this file.
1 
10 #pragma once
11 
20 #include "VuoInteger.h"
21 #include "VuoText.h"
22 
26 typedef struct
27 {
31 
34 
39 
40 #define VuoAudioOutputDevice_SUPPORTS_COMPARISON
43 
53 
57 static inline VuoAudioOutputDevice VuoAudioOutputDevice_make(VuoInteger id, VuoText modelUid, VuoText name, VuoInteger channelCount) __attribute__((const));
58 static inline VuoAudioOutputDevice VuoAudioOutputDevice_make(VuoInteger id, VuoText modelUid, VuoText name, VuoInteger channelCount)
59 {
60  return (VuoAudioOutputDevice){id, modelUid, name, channelCount};
61 }
62