mirror of
https://github.com/libretro/RetroArch
synced 2025-02-02 14:54:10 +00:00
19 lines
315 B
C++
19 lines
315 B
C++
#include <QDebug>
|
|
#include "../wrapper/wrapper.h"
|
|
#include "../wimp/wimp.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
struct Wimp* wimp;
|
|
char* args[] = {""};
|
|
|
|
qDebug() << "C++ Style Debug Message";
|
|
|
|
wimp = ctrWimp(0, argv);
|
|
if(wimp)
|
|
CreateMainWindow(wimp);
|
|
|
|
return 1;
|
|
}
|
|
|