git.ucc.asn.au
/
tpg
/
acess2.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Usermode/libposix - Fixed compilation error with higher warnings
[tpg/acess2.git]
/
KernelLand
/
Kernel
/
include
/
bootmod.h
1
/*
2
* Acess2 Kernel
3
* - By John Hodge (thePowersGang)
4
*
5
* include/bootmod.h
6
* - Common boot modules type
7
*/
8
#ifndef _BOOTMOD_H_
9
#define _BOOTMOD_H_
10
11
typedef struct sBootModule tBootModule;
12
13
struct sBootModule {
14
tPAddr PBase;
15
void *Base;
16
Uint Size;
17
char *ArgString;
18
};
19
20
#endif
21
UCC
git Repository :: git.ucc.asn.au