mirror of
https://github.com/dborth/fceugx.git
synced 2024-11-01 06:55:05 +01:00
23 lines
505 B
C
23 lines
505 B
C
int FCEU_InitVirtualVideo(void);
|
|
void FCEU_KillVirtualVideo(void);
|
|
int SaveSnapshot(void);
|
|
extern uint8 *XBuf;
|
|
extern uint8 *XBackBuf;
|
|
extern int ClipSidesOffset;
|
|
extern struct GUIMESSAGE
|
|
{
|
|
//countdown for gui messages
|
|
int howlong;
|
|
|
|
//the current gui message
|
|
char errmsg[110];
|
|
|
|
//indicates that the movie should be drawn even on top of movies
|
|
bool isMovieMessage;
|
|
|
|
} guiMessage;
|
|
|
|
extern GUIMESSAGE subtitleMessage;
|
|
|
|
void FCEU_DrawNumberRow(uint8 *XBuf, int *nstatus, int cur);
|