blob: 1ca3ff9dfefb94d75be477542578c04da07e9653 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef _NS_EVENT_H_
#define _NS_EVENT_H_
void ns_event_loop(int* keepRunning);
void ns_run_in_event_loop(void (*func)());
void ns_run_in_event_loop_with_bool(void (*func)(bool bArg), bool isTrue);
void set_application_icon(char *path);
#endif /* _NS_EVENT_H_ */
|