Files
Atmosphere-Pro/fusee/fusee-secondary/src/loader.h
2018-04-08 05:13:15 -06:00

8 lines
154 B
C

#ifndef FUSEE_LOADER_H
#define FUSEE_LOADER_H
typedef void (*entrypoint_t)(int argc, void **argv);
entrypoint_t load_payload(const char *bct0);
#endif