Files
ci-libretro-fceumm/src/video.h
2022-09-05 01:33:27 +02:00

12 lines
249 B
C

#ifndef _FCEU_VIDEO_H
#define _FCEU_VIDEO_H
int FCEU_InitVirtualVideo(void);
void FCEU_KillVirtualVideo(void);
extern uint8 *XBuf;
extern uint8 *XDBuf;
extern int show_crosshair;
void FCEU_DrawNumberRow(uint8 *XBuf, int *nstatus, int cur);
#endif