Vuo  2.1.1
VuoNdiSource.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 {
28  VuoText name;
29  VuoText ipAddress;
30  VuoInteger port;
31 } VuoNdiSource;
32 
34 struct json_object *VuoNdiSource_getJson(const VuoNdiSource value);
35 char *VuoNdiSource_getSummary(const VuoNdiSource value);
37 
38 #define VuoNdiSource_SUPPORTS_COMPARISON
39 bool VuoNdiSource_areEqual(const VuoNdiSource value1, const VuoNdiSource value2);
40 bool VuoNdiSource_isLessThan(const VuoNdiSource value1, const VuoNdiSource value2);
41 
42 bool VuoNdiSource_isPopulated(const VuoNdiSource source);
43 
53