Vuo  2.3.2
VuoAudioInputDevice.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 VuoAudioInputDevice_SUPPORTS_COMPARISON
43 
53 
57 static inline VuoAudioInputDevice VuoAudioInputDevice_make(VuoInteger id, VuoText modelUid, VuoText name, VuoInteger channelCount) __attribute__((const));
58 static inline VuoAudioInputDevice VuoAudioInputDevice_make(VuoInteger id, VuoText modelUid, VuoText name, VuoInteger channelCount)
59 {
60  return (VuoAudioInputDevice){id, modelUid, name, channelCount};
61 }
62