-
Notifications
You must be signed in to change notification settings - Fork 0
/
relocate.h
36 lines (27 loc) · 1 KB
/
relocate.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#ifndef __RELOCATE_H__
#define __RELOCATE_H__
#include "rom.h"
#include "os_structs.h"
extern void Relocate_MemChunk (MemChunkHeaderUnionType* pChunk,
UInt16 version,
UInt32 oldBase,
UInt32 newBase);
extern void Relocate_CardHeader (CardHeaderPtr pCard,
UInt32 oldBase,
UInt32 newBase);
extern void Relocate_StorageHeader (StorageHeaderPtr pStore,
UInt32 oldBase,
UInt32 newBase);
extern void Relocate_HeapHeader (MemHeapHeaderUnionType* pHeader,
UInt32 oldBase,
UInt32 newBase);
extern void Relocate_HeapList (HeapListPtr pHeapList,
UInt32 oldBase,
UInt32 newBase);
extern void Relocate_DatabaseList (DatabaseListPtr pList,
UInt32 oldBase,
UInt32 newBase);
extern void Relocate_DatabaseHdr (DatabaseHdrPtr pDatabase,
UInt32 oldBase,
UInt32 newBase);
#endif // __RELOCATE_H__