[56] | 1 | /* |
---|
| 2 | * Abuse - dark 2D side-scrolling platform game |
---|
| 3 | * Copyright (c) 1995 Crack dot Com |
---|
| 4 | * |
---|
| 5 | * This software was released into the Public Domain. As with most public |
---|
| 6 | * domain software, no warranty is made or implied by Crack dot Com or |
---|
| 7 | * Jonathan Clark. |
---|
| 8 | */ |
---|
| 9 | |
---|
[2] | 10 | int change_dir(char *path); |
---|
| 11 | long K_avail(char *path); |
---|
| 12 | void set_cursor(int x, int y); |
---|
| 13 | void put_char(int x, int y, int val, int color=0x17); |
---|
| 14 | unsigned short get_char(int x, int y, int val); |
---|
| 15 | void put_string(int x,int y,char *s, int c); |
---|
| 16 | void bar(int x1, int y1, int x2, int y2, int v, int c); |
---|
| 17 | void cls(); |
---|
| 18 | void box(int x1, int y1, int x2, int y2, int c); |
---|
| 19 | void put_title(char *t); |
---|
| 20 | int nice_copy(char *title, char *source, char *dest); |
---|
| 21 | void *nice_input(char *t, char *p, char *d); |
---|
| 22 | void *nice_menu(void *main_title, void *menu_title, void *list); |
---|
| 23 | void center_tbox(void *list, int c); |
---|
| 24 | void *show_yes_no(void *t, void *msg, void *y, void *n); |
---|
| 25 | void modify_install_path(char *path); |
---|
| 26 | |
---|
| 27 | |
---|
| 28 | |
---|