Immense cleanup of libc, implemening login program. Slight changes to ACL handling...
[tpg/acess2.git] / Kernel / include / mboot.h
1 /*
2  * AcessOS Microkernel Version
3  * mboot.h
4  */
5 #ifndef _MBOOT_H
6 #define _MBOOT_H
7
8 // === TYPES ===
9 typedef struct {
10         Uint32  Flags;
11         Uint32  LowMem;
12         Uint32  HighMem;
13         Uint32  BootDevice;
14         Uint32  CommandLine;
15         Uint32  ModuleCount;
16         Uint32  Modules;
17 } tMBoot_Info;
18
19 typedef struct {
20         Uint32  Start;
21         Uint32  End;
22         char    *String;
23         Uint32  Resvd;
24 } tMBoot_Module;
25
26 #endif

UCC git Repository :: git.ucc.asn.au