Update to lasso handling. Adjust scroll amount based on difference between mouse...
[AROS.git] / rom / dos / internalloadseg.h
blob78aa04069a9c412dc1403ac1543f24144ee58b05
1 #ifndef INTERNALLOADSEG_H
2 #define INTERNALLOADSEG_H
4 BPTR InternalLoadSeg_AOS(BPTR file,
5 BPTR table,
6 SIPTR * FuncArray,
7 SIPTR * stack,
8 struct MinList *seginfos,
9 struct DosLibrary * DOSBase);
11 BPTR InternalLoadSeg_ELF(BPTR file,
12 BPTR hunk_table,
13 SIPTR * FuncArray,
14 SIPTR * stack,
15 struct MinList *seginfos,
16 struct DosLibrary * DOSBase);
18 BPTR InternalLoadSeg_ELF64(BPTR file,
19 BPTR hunk_table,
20 SIPTR * FuncArray,
21 SIPTR * stack,
22 struct MinList *seginfos,
23 struct DosLibrary * DOSBase);
25 BPTR InternalLoadSeg_ELF_AROS(BPTR file,
26 BPTR hunk_table,
27 SIPTR * FuncArray,
28 SIPTR * stack,
29 struct MinList *seginfos,
30 struct DosLibrary * DOSBase);
32 BPTR InternalLoadSeg_AOUT(BPTR file,
33 BPTR hunk_table,
34 SIPTR * FuncArray,
35 SIPTR * stack,
36 struct MinList *seginfos,
37 struct DosLibrary * DOSBase);
39 #endif