mirror of
https://github.com/libretro/RetroArch
synced 2025-02-08 15:40:14 +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
|