Vuo  2.0.1
VuoBoolean.h
Go to the documentation of this file.
1 
10 #pragma once
11 
12 #ifdef __cplusplus
13 extern "C"
14 {
15 #endif
16 
17 struct json_object;
18 
20 typedef void * VuoList_VuoBoolean;
21 #define VuoList_VuoBoolean_TYPE_DEFINED
22 
35 typedef unsigned long VuoBoolean;
36 
38 struct json_object * VuoBoolean_getJson(const VuoBoolean value);
40 char * VuoBoolean_getSummary(const VuoBoolean value);
41 
43 
46 VuoBoolean VuoBoolean_makeFromString(const char *str);
47 char * VuoBoolean_getString(const VuoBoolean value);
48 void VuoBoolean_retain(VuoBoolean value);
49 void VuoBoolean_release(VuoBoolean value);
51 
52 #define VuoBoolean_SUPPORTS_COMPARISON
53 bool VuoBoolean_areEqual(const VuoBoolean value1, const VuoBoolean value2);
54 bool VuoBoolean_isLessThan(const VuoBoolean a, const VuoBoolean b);
55 
60 #ifdef __cplusplus
61 }
62 #endif