#ifndef WII_OBJ_H #define WII_OBJ_H #include typedef struct { size_t size; void * file_ptr; const char * filename; } shared_file_obj; void shared_native_print(const char * message, GRRLIB_ttfFont * font); void shared_native_exit(bool * running); unsigned int shared_pad_buttons_down(); shared_file_obj shared_get_file(const char * filename); bool shared_is_valid_file(shared_file_obj file); #endif