AppleWin/source/frontends/libretro/interface.cpp
Andrea Odetti 7d6439fefd Introduce a LinuxFrame.
Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
2020-12-27 20:25:42 +00:00

10 lines
267 B
C++

#include "linux/interface.h"
#include "frontends/libretro/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;
}