blob: a6327508405300649d8efb384d907bfb3619fba8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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
|