mirror of
https://github.com/libretro/beetle-pce-fast-libretro.git
synced 2024-11-23 16:00:08 +00:00
17 lines
320 B
C
17 lines
320 B
C
#ifndef __MDFN_VIDEO_H
|
|
#define __MDFN_VIDEO_H
|
|
|
|
#include "video/surface.h"
|
|
|
|
#include <algorithm>
|
|
|
|
void MDFN_ResetMessages(void);
|
|
void MDFN_InitFontData(void);
|
|
void MDFN_DispMessage(const char *format, ...) throw() MDFN_FORMATSTR(printf, 1, 2);
|
|
|
|
int MDFN_InitVirtualVideo(void);
|
|
void MDFN_KillVirtualVideo(void);
|
|
|
|
|
|
#endif
|