Files
Atmosphere/fusee/fusee-secondary/src/loader.h
2018-04-07 21:45:57 -06:00

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