2014-03-30 22:50:28 +02:00
|
|
|
#ifndef _FCEU_VIDEO_H
|
|
|
|
|
#define _FCEU_VIDEO_H
|
|
|
|
|
|
2014-03-30 22:15:17 +02:00
|
|
|
int FCEU_InitVirtualVideo(void);
|
|
|
|
|
void FCEU_KillVirtualVideo(void);
|
|
|
|
|
int SaveSnapshot(void);
|
|
|
|
|
extern uint8 *XBuf;
|
2020-02-25 11:51:41 +08:00
|
|
|
extern uint8 *XDBuf;
|
2017-09-16 17:32:05 +08:00
|
|
|
extern int show_crosshair;
|
2014-03-30 22:15:17 +02:00
|
|
|
void FCEU_DrawNumberRow(uint8 *XBuf, int *nstatus, int cur);
|
2014-03-30 22:50:28 +02:00
|
|
|
|
|
|
|
|
#endif
|