Handles applications running inside the server.
More...
Go to the source code of this file.
|
|
typedef gboolean(* | qio_app_cb )() |
| | Callback type expected from the apps.
|
| |
|
|
void | apps_init () |
| | Listens for new apps in configuration and runs them as they're discovered.
|
| |
|
void | apps_test () |
| | Runs app->test() on all the apps.
|
| |
Handles applications running inside the server.
- Author
- Andrew Stone andre.nosp@m.w@cl.nosp@m.ovar..nosp@m.com
- Copyright
- 2012-2014 Clear Channel Inc.
| #define QUICKIO_APP |
( |
|
init, |
|
|
|
exit |
|
) |
| |
Value:
gboolean __qio_app_init() \
{ \
return init(); } \
gboolean __qio_app_exit() \
{ \
return exit(); }
#define QIO_MAGIC_NUM
Used to verify that modules are QIO apps.
Definition: apps.h:18
For an app: sets up all the necessary callbacks.
| #define QUICKIO_APP_TEST |
( |
|
test | ) |
|
Value:gboolean __qio_app_test() \
{ \
return test(); }
For an app: sets up all the necessary callbacks.