payload_loader/src/elf_loading.h

19 lines
261 B
C
Raw Permalink Normal View History

2019-01-12 20:29:45 +01:00
#ifndef ELF_LOADIUNG_H
#define COMMON_H
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
#include "structs.h"
2019-01-12 20:29:45 +01:00
uint32_t LoadAndCopyFile(const char *filepath, private_data_t * private_data);
2019-01-12 20:29:45 +01:00
#ifdef __cplusplus
}
#endif
#endif /* ELF_LOADIUNG_H */