mirror of
https://github.com/0ldsk00l/nestopia.git
synced 2025-04-02 10:31:51 -04:00
29 lines
524 B
C
29 lines
524 B
C
#ifndef _MAIN_H_
|
|
#define _MAIN_H_
|
|
|
|
#define TV_WIDTH 292
|
|
|
|
void NstPlayGame();
|
|
void NstPlayNsf();
|
|
void NstStopNsf();
|
|
void NstScheduleQuit();
|
|
void NstStopPlaying();
|
|
void NstSoftReset();
|
|
void NstHardReset();
|
|
bool NstIsPlaying();
|
|
bool NstIsLoaded();
|
|
void NstLoadGame(const char* filename);
|
|
void NstLaunchConfig();
|
|
|
|
void SetupVideo();
|
|
void SetupSound();
|
|
void SetupInput();
|
|
|
|
void get_screen_res();
|
|
void ToggleFullscreen();
|
|
void FlipFDSDisk();
|
|
void SwitchFDSDisk();
|
|
void print_fds_info();
|
|
void print_message(char* message);
|
|
|
|
#endif
|