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
13typedef 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