Vuo  2.0.0
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 
38 
39 #define VuoAudioOutputDevice_SUPPORTS_COMPARISON
42 
52 
56 static inline VuoAudioOutputDevice VuoAudioOutputDevice_make(VuoInteger id, VuoText modelUid, VuoText name, VuoInteger channelCount) __attribute__((const));
57 static inline VuoAudioOutputDevice VuoAudioOutputDevice_make(VuoInteger id, VuoText modelUid, VuoText name, VuoInteger channelCount)
58 {
59  return (VuoAudioOutputDevice){id, modelUid, name, channelCount};
60 }
61