mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-02-23 14:42:33 +01:00
14 lines
263 B
C
14 lines
263 B
C
#ifndef rewind_h
|
|
#define rewind_h
|
|
|
|
#include "gb.h"
|
|
|
|
#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
|