blob: 2b9ad87aee84cc3f0207430e86414a2e0f27af67 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#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 ocRunFini_ELF ( ObjectCode* oc );
int ocAllocateExtras_ELF ( ObjectCode *oc );
void freeNativeCode_ELF ( ObjectCode *nc );
void *loadNativeObj_ELF ( pathchar *path, char **errmsg );
#include "EndPrivate.h"
|