Vuo  2.0.0
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 const char *VuoApp_getVuoFrameworkPath(void);
20 const char *VuoApp_getVuoRunnerFrameworkPath(void);
21 
22 void VuoApp_init(bool requiresDockIcon);
23 void *VuoApp_setMenuItems(void *items);
24 void VuoApp_setMenu(void *menu);
25 
26 extern const double VuoApp_windowFadeSeconds;
27 
28 #ifdef __cplusplus
29 }
30 #endif