1 | int change_dir(char *path); |
---|
2 | long K_avail(char *path); |
---|
3 | void set_cursor(int x, int y); |
---|
4 | void put_char(int x, int y, int val, int color=0x17); |
---|
5 | unsigned short get_char(int x, int y, int val); |
---|
6 | void put_string(int x,int y,char *s, int c); |
---|
7 | void bar(int x1, int y1, int x2, int y2, int v, int c); |
---|
8 | void cls(); |
---|
9 | void box(int x1, int y1, int x2, int y2, int c); |
---|
10 | void put_title(char *t); |
---|
11 | int nice_copy(char *title, char *source, char *dest); |
---|
12 | void *nice_input(char *t, char *p, char *d); |
---|
13 | void *nice_menu(void *main_title, void *menu_title, void *list); |
---|
14 | void center_tbox(void *list, int c); |
---|
15 | void *show_yes_no(void *t, void *msg, void *y, void *n); |
---|
16 | void modify_install_path(char *path); |
---|
17 | |
---|
18 | |
---|
19 | |
---|