X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=loader%2Fheader.h;h=7bff116d76d43ad88b28ad850090cc453a75b003;hb=f2a1fca9e81b773927c0b28dffaa6e2ee8a5956a;hp=ec4a49501773b352c1f479763f62e99933fd6379;hpb=c3831532675b527bd34ee92377b1b6d323345cb1;p=ginge.git diff --git a/loader/header.h b/loader/header.h index ec4a495..7bff116 100644 --- a/loader/header.h +++ b/loader/header.h @@ -34,6 +34,8 @@ enum { FAKEDEV_FB1, FAKEDEV_MMUHACK, FAKEDEV_TTY0, + FAKEDEV_WM97XX, + FAKEDEV_WM97XX_P, FAKEDEV_FD_BOUNDARY, }; @@ -46,14 +48,15 @@ void emu_call_handle_op(struct op_context *op_ctx); long emu_do_mmap(unsigned int length, int prot, int flags, int fd, unsigned int offset); long emu_do_munmap(void *addr, unsigned int length); long emu_do_ioctl(int fd, int request, void *argp); -long emu_read_gpiodev(void *buf, int count); +long emu_do_read(int fd, void *buf, int count); void *emu_do_fopen(const char *path, const char *mode); int emu_do_system(const char *command); -int emu_do_execve(const char *filename, char *const argv[], char *const envp[]); +long emu_do_execve(const char *filename, char *const argv[], char *const envp[]); int host_init(void); int host_read_btns(void); -void host_forced_exit(void); +int host_read_ts(int *pressed, int *x1024, int *y1024); +void host_forced_exit(int status); enum { GP2X_UP = 0, GP2X_LEFT = 2, GP2X_DOWN = 4, GP2X_RIGHT = 6, GP2X_START = 8, GP2X_SELECT = 9, GP2X_L = 10, GP2X_R = 11, @@ -61,6 +64,7 @@ enum { GP2X_UP = 0, GP2X_LEFT = 2, GP2X_DOWN = 4, GP2X_RIGHT = 6, GP2X_VOL_UP = 16, GP2X_VOL_DOWN = 17, GP2X_PUSH = 18 }; extern char *bin_path; +extern char **g_argv; #define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0]))