object web, etc
[cilux] / src / platform / container.h
1 /* -------------------------------------------------------------------------- */
2 /*
3     container.h:  lifecycle and external event functions 
4                   from executable to kernel
5 */
6
7 PUBLIC void     c_init(char*   version,
8                        char*   ciux,
9                        void  (*terminate)(void));
10
11 PUBLIC C_RUN_RV c_run(C_RUN_ARG arg);
12
13 PUBLIC void     c_running(int running);
14 PUBLIC void     c_key(unsigned char key, int down);
15 PUBLIC void     c_signal(int signum);
16
17 /* -------------------------------------------------------------------------- */
18