new controls dialog; using gconf instead of hgw
[drnoksnes] / platform / hgw.h
1 #ifndef _PLATFORM_HGW_H_
2 #define _PLATFORM_HGW_H_
3
4 #ifdef __cplusplus
5 /** True if we were launched from GUI. */
6 extern bool hgwLaunched;
7
8 /** Called from main() before loading config; connects to DBus. */
9 void HgwInit();
10 /** Called from main() before closing. */
11 void HgwDeinit();
12 /** Called from main() after loading user config; loads GUI settings. */
13 void HgwConfig();
14 /** Called from main() in the event loop; polls DBus. */
15 void HgwPollEvents();
16 #endif
17
18 #endif
19