mirror of
https://github.com/libretro/RetroArch
synced 2025-02-02 05:54:16 +00:00
24 lines
361 B
C++
24 lines
361 B
C++
#include "../../wimp/wimp/wimp.h"
|
|
#include "../../wimp/wimp/wimp_global.h"
|
|
#include "wrapper.h"
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct Wimp Wimp;
|
|
|
|
Wimp* ctrWimp(int argc, char *argv[]){
|
|
return new Wimp(argc,argv);
|
|
}
|
|
|
|
int CreateMainWindow(Wimp* p)
|
|
{
|
|
return p->CreateMainWindow();
|
|
}
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|