Atmosphere/fusee/fusee-secondary/src/loader.h

8 lines
154 B
C
Raw Normal View History

2018-04-07 21:43:54 +00:00
#ifndef FUSEE_LOADER_H
#define FUSEE_LOADER_H
typedef void (*entrypoint_t)(int argc, void **argv);
2018-04-07 21:43:54 +00:00
2018-04-08 11:13:15 +00:00
entrypoint_t load_payload(const char *bct0);
2018-04-07 21:43:54 +00:00
#endif