Vuo  2.3.2
VuoApp.h
Go to the documentation of this file.
1 
10 #ifdef __cplusplus
11 extern "C" {
12 #endif
13 
14 #include <stdbool.h>
15 
16 bool VuoApp_isMainThread(void);
17 void VuoApp_executeOnMainThread(void (^block)(void));
18 char *VuoApp_getName(void);
19 
20 void VuoApp_init(bool requiresDockIcon);
21 void *VuoApp_setMenuItems(void *items);
22 void VuoApp_setMenu(void *menu);
23 
24 extern const double VuoApp_windowFadeSeconds;
25 
26 #ifdef __cplusplus
27 }
28 #endif