2018-02-10 12:42:14 +00:00
|
|
|
#ifndef rewind_h
|
|
|
|
#define rewind_h
|
|
|
|
|
2018-05-27 16:30:23 +00:00
|
|
|
#include <stdbool.h>
|
|
|
|
#include "gb_struct_def.h"
|
2018-02-10 12:42:14 +00:00
|
|
|
|
|
|
|
#ifdef GB_INTERNAL
|
|
|
|
void GB_rewind_push(GB_gameboy_t *gb);
|
|
|
|
void GB_rewind_free(GB_gameboy_t *gb);
|
|
|
|
#endif
|
|
|
|
bool GB_rewind_pop(GB_gameboy_t *gb);
|
|
|
|
void GB_set_rewind_length(GB_gameboy_t *gb, double seconds);
|
|
|
|
|
|
|
|
#endif
|