Vuo  2.1.2
VuoVideoInputDevice.h
Go to the documentation of this file.
1 
10 #pragma once
11 
20 #include "VuoText.h"
21 
25 typedef enum
26 {
27  VuoVideoInputDevice_MatchIdThenName,
28  VuoVideoInputDevice_MatchId,
30 
34 typedef struct
35 {
37 
40 
41  char blah[42];
42 
44 
48 
49 #define VuoVideoInputDevice_SUPPORTS_COMPARISON
52 
62 
66 static inline VuoVideoInputDevice VuoVideoInputDevice_make(VuoText id, VuoText name) __attribute__((const));
68 {
69  VuoVideoInputDevice device = { VuoVideoInputDevice_MatchIdThenName, id, name, "" };
70  return device;
71 }
72