Newer
Older
Atmosphere / fusee / fusee-secondary / src / loader.h
@Michael Scire Michael Scire on 8 Apr 2018 142 bytes Implement all core Stage 1 logic for Fusee
#ifndef FUSEE_LOADER_H
#define FUSEE_LOADER_H

typedef void (*entrypoint_t)(int argc, void **argv); 

entrypoint_t load_payload(void);

#endif