Fixed missing fprintf argument.
[AROS.git] / rom / dos / internalloadseg.h
blob9d550fcb19e01cf94538367bb0d92799da7a7072
1 #ifndef INTERNALLOADSEG_H
2 #define INTERNALLOADSEG_H
4 BPTR InternalLoadSeg_AOS(BPTR file,
5 BPTR table,
6 LONG * FuncArray,
7 LONG * stack,
8 struct DosLibrary * DOSBase);
10 BPTR InternalLoadSeg_ELF(BPTR file,
11 BPTR hunk_table,
12 LONG * FuncArray,
13 LONG * stack,
14 struct DosLibrary * DOSBase);
16 BPTR InternalLoadSeg_ELF_AROS(BPTR file,
17 BPTR hunk_table,
18 LONG * FuncArray,
19 LONG * stack,
20 struct DosLibrary * DOSBase);
22 BPTR InternalLoadSeg_AOUT(BPTR file,
23 BPTR hunk_table,
24 LONG * FuncArray,
25 LONG * stack,
26 struct DosLibrary * DOSBase);
28 #endif