#ifndef NESE_PORT_H_ #define NESE_PORT_H_ #include #include "input.h" int nese_frame_start(void*, uint8_t background); int nese_line_ready(void*, uint8_t* buffer, int line); int nese_frame_ready(void*); int nese_update_input(void*, nes_Input*); int nese_get_audio_frequency(void*); void* nese_alloc_gpu(int); void* nese_alloc_cpu(int); void* nese_alloc(int); #endif // NESE_PORT_H_