xref: /haiku/headers/private/kernel/boot/stage2_args.h (revision b6f76ebe7153b94820cf35f8db4facc158841abb)
1 /*
2 ** Copyright 2003, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
3 ** Distributed under the terms of the MIT License.
4 */
5 #ifndef KERNEL_BOOT_STAGE2_ARGS_H
6 #define KERNEL_BOOT_STAGE2_ARGS_H
7 
8 
9 #include <SupportDefs.h>
10 #include <platform_stage2_args.h>
11 
12 
13 typedef struct stage2_args {
14 	size_t heap_size;
15 	const char **arguments;
16 	int32 arguments_count;
17 	struct platform_stage2_args	platform;
18 } stage2_args ;
19 
20 #endif	/* KERNEL_BOOT_STAGE2_ARGS_H */
21