AppleWin/source/frontends/retro/interface.cpp
Andrea Odetti cec0c10286 libretro: first "working" versions.
draws video upside down
accepts keys (O crashes, and others have overloaded meaning)

Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
2020-12-12 18:46:56 +00:00

22 lines
378 B
C++

#include "linux/interface.h"
#include "frontends/retro/environment.h"
#include "linux/win.h"
int MessageBox(HWND, const char * text, const char * caption, UINT type)
{
log_cb(RETRO_LOG_INFO, "RA2: %s: %s - %s\n", __FUNCTION__, caption, text);
return IDOK;
}
void FrameDrawDiskLEDS(HDC x)
{
}
void FrameDrawDiskStatus(HDC x)
{
}
void FrameRefreshStatus(int x, bool)
{
}