X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=loader%2Fheader.h;h=29841eae7496c4e3da8bbb855eb5e44fc98644ff;hb=2692251daf4c8a3ca6986cece8f7fc0822de150f;hp=06418789ee6e97b21f3ea713960c0e6f8f8f3c3b;hpb=7868435641e4209e956a591ff0844afc14f83f16;p=ginge.git diff --git a/loader/header.h b/loader/header.h index 0641878..29841ea 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,13 +48,16 @@ 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); long emu_do_execve(const char *filename, char *const argv[], char *const envp[]); +const char *emu_wrap_path(const char *path); +void emu_wrap_path_free(const char *w_path, const char *old_path); int host_init(void); int host_read_btns(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,