blob: 12bf1772f792538125a20410c9d1effd32eea69e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#pragma once
#include "Rts.h"
#include "LinkerInternals.h"
#include "linker/ElfTypes.h"
#include "BeginPrivate.h"
void ocInit_ELF ( ObjectCode* oc );
void ocDeinit_ELF ( ObjectCode* oc );
int ocVerifyImage_ELF ( ObjectCode* oc );
int ocGetNames_ELF ( ObjectCode* oc );
int ocResolve_ELF ( ObjectCode* oc );
int ocRunInit_ELF ( ObjectCode* oc );
int ocAllocateExtras_ELF ( ObjectCode *oc );
void freeNativeCode_ELF ( ObjectCode *nc );
void *loadNativeObj_ELF ( pathchar *path, char **errmsg );
#include "EndPrivate.h"
|