forked from MeloNX/MeloNX
23 lines
322 B
C
23 lines
322 B
C
//
|
|
// Ryujinx.h
|
|
// MeloNX
|
|
//
|
|
// Created by Stossy11 on 1/11/2024.
|
|
//
|
|
|
|
#ifndef RyujinxSDL_h
|
|
#define RyujinxSDL_h
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
// Declare the main_ryujinx_sdl function, matching the signature
|
|
int main_ryujinx_sdl(int argc, char **argv);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* RyujinxSDL_h */
|