ui.h
1 #ifndef UI_H
2 #define UI_H 1
3 
4 
5 /* ========================================================================== */
6 /* Variables */
7 
8 extern int ui_debug;
9 
10 
11 /* ========================================================================== */
12 /* Function prototypes */
13 
14 int ui_lock(void);
15 int ui_unlock(void);
16 void ui_wakeup(unsigned int);
17 
18 
19 #endif /* UI_H */
20 
21 /* EOF */
ui_wakeup
void ui_wakeup(unsigned int)
Wakeup callback (called by core thread after operation has finished)
Definition: gui.cxx:12596
ui_unlock
int ui_unlock(void)
Unlock for multithread support.
Definition: gui.cxx:12728
ui_lock
int ui_lock(void)
Lock for multithread support.
Definition: gui.cxx:12706

Generated at 2024-04-27 using  doxygen