test.h
1 #ifndef TEST_H
2 #define TEST_H 1
3 
4 
5 /*! \addtogroup TEST */
6 /*! @{ */
7 
8 
9 /* ========================================================================== */
10 /* Macros */
11 
12 /*! \brief Tabulator to indent messages from test programs */
13 #define TEST_TAB " "
14 
15 /*! \brief Permissions for test files */
16 #define TEST_PERM (posix_mode_t) (POSIX_S_IRUSR | POSIX_S_IWUSR)
17 
18 
19 /*! @} */
20 
21 
22 /* ========================================================================== */
23 /* Function prototypes */
24 
25 void print_error(const char*);
26 int ts_lock_ui(void);
27 int ts_unlock_ui(void);
28 void ui_wakeup(unsigned int);
29 
30 
31 #endif /* TEST_H */
32 
33 /* EOF */
ui_wakeup
void ui_wakeup(unsigned int)
Wakeup callback (called by core thread after operation has finished)
Definition: gui.cxx:12596
ts_unlock_ui
int ts_unlock_ui(void)
Unlock UI thread.
Definition: main.cxx:244
ts_lock_ui
int ts_lock_ui(void)
Lock UI thread.
Definition: main.cxx:217
print_error
void print_error(const char *)
Print error message.
Definition: main.cxx:276

Generated at 2024-04-27 using  doxygen