mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-19 05:17:22 +01:00
8 lines
147 B
C
8 lines
147 B
C
|
#ifndef FUSEE_LOADER_H
|
||
|
#define FUSEE_LOADER_H
|
||
|
|
||
|
typedef void (*entrypoint_t)(int argc, const char *argv);
|
||
|
|
||
|
entrypoint_t load_payload(void);
|
||
|
|
||
|
#endif
|