Vuo  2.0.0
VuoArtNetInputDevice.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  VuoInteger net;
29  VuoInteger subNet;
30  VuoInteger universe;
32 
36 typedef struct
37 {
38  VuoText name;
39  VuoText ipAddress;
40  VuoText ethernetAddress;
41  VuoArtNetAddress address;
43 
47 
48 VuoArtNetInputDevice VuoArtNetInputDevice_make(const VuoInteger net, const VuoInteger subNet, const VuoInteger universe);
49 
50 #define VuoArtNetInputDevice_SUPPORTS_COMPARISON
53 
54 bool VuoArtNetAddress_areEqual(const VuoArtNetAddress value1, const VuoArtNetAddress value2);
55 bool VuoArtNetAddress_isLessThan(const VuoArtNetAddress valueA, const VuoArtNetAddress valueB);
56 
57 
67