summaryrefslogtreecommitdiff
path: root/rts/linker/Elf.h
blob: 30c993b98c98ad6349d8d4cf2cb54517023d98ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once

#include "Rts.h"
#include "LinkerInternals.h"

#include "BeginPrivate.h"

#include <linker/ElfTypes.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 );

#include "EndPrivate.h"