mirror of
https://github.com/libretro/RetroArch
synced 2025-02-08 15:40:14 +00:00
19 lines
243 B
C
19 lines
243 B
C
|
#ifndef WRAPPER_H
|
||
|
#define WRAPPER_H
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
typedef struct Wimp Wimp;
|
||
|
|
||
|
Wimp* ctrWimp(int argc, char *argv[]);
|
||
|
|
||
|
int CreateMainWindow(Wimp* p);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif // WRAPPER_H
|