diff options
Diffstat (limited to 'os/main.h')
| -rw-r--r-- | os/main.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/os/main.h b/os/main.h new file mode 100644 index 0000000..a632750 --- /dev/null +++ b/os/main.h @@ -0,0 +1,13 @@ +#ifndef MAIN_H +#define MAIN_H + +typedef struct +{ + char *name; + void (*keypress_handler)(unsigned char); +} Program_t; + +void os_start(); +void os_proxy_keypress(unsigned char key); + +#endif
\ No newline at end of file |