handle another palette write
[ginge.git] / loader / header.h
index 4bc6e1b..ec4a495 100644 (file)
@@ -43,10 +43,10 @@ struct op_context;
 
 void  emu_init(void *map_bottom);
 void  emu_call_handle_op(struct op_context *op_ctx);
-void *emu_do_mmap(unsigned int length, int prot, int flags, int fd, unsigned int offset);
-int   emu_do_munmap(void *addr, unsigned int length);
-int   emu_do_ioctl(int fd, int request, void *argp);
-int   emu_read_gpiodev(void *buf, int count);
+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);
 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[]);
@@ -60,6 +60,8 @@ enum  { GP2X_UP = 0,      GP2X_LEFT = 2,      GP2X_DOWN = 4,  GP2X_RIGHT = 6,
         GP2X_A = 12,      GP2X_B = 13,        GP2X_X = 14,    GP2X_Y = 15,
         GP2X_VOL_UP = 16, GP2X_VOL_DOWN = 17, GP2X_PUSH = 18 };
 
+extern char *bin_path;
+
 #define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0]))
 
 #endif /* INCLUDE_sQt5fY5eUJn5tKV0IBTDxK0zqQutTqTp */