Chameleon

Chameleon Svn Source Tree

Root/branches/azimutz/Chazi/i386/boot2/options.h

1/*
2 * Copyright (c) 1999-2004 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
6 * Portions Copyright (c) 1999-2004 Apple Computer, Inc. All Rights
7 * Reserved. This file contains Original Code and/or Modifications of
8 * Original Code as defined in and that are subject to the Apple Public
9 * Source License Version 2.0 (the "License"). You may not use this file
10 * except in compliance with the License. Please obtain a copy of the
11 * License at http://www.apple.com/publicsource and read it before using
12 * this file.
13 *
14 * The Original Code and all software distributed under the License are
15 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
16 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
17 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE OR NON- INFRINGEMENT. Please see the
19 * License for the specific language governing rights and limitations
20 * under the License.
21 *
22 * @APPLE_LICENSE_HEADER_END@
23 */
24
25#ifndef __BOOT2_OPTIONS_H
26#define __BOOT2_OPTIONS_H
27
28//#include "boot.h"
29//#include "bootstruct.h"
30//#include "graphics.h"
31
32//AZI: KEEP THIS FILE ???
33
34extern intgDeviceCount;
35void clearBootArgs(void);
36
37typedef struct {
38 int x;
39 int y;
40 int type;
41} CursorState;
42
43enum {
44 kMenuTopRow = 5,
45 kMenuMaxItems = 10,
46 kScreenLastRow = 24
47};
48
49/*
50extern const MenuItem * gMenuItems;
51
52
53
54void addBootArg(const char * argStr);
55void changeCursor( int col, int row, int type, CursorState * cs );
56void moveCursor( int col, int row );
57void restoreCursor( const CursorState * cs );
58void printMemoryInfo(void);
59void lspci(void);
60void printMenuItem( const MenuItem * item, int highlight );
61bool flushKeyboardBuffer(void);
62
63
64extern bool shouldboot;
65
66#ifdef UNUSED
67extern int multiboot_timeout;
68extern int multiboot_timeout_set;
69#endif
70
71extern BVRef bvChain;
72//extern intmenucount;
73
74
75
76
77//==========================================================================
78
79extern char gBootArgs[BOOT_STRING_LEN];
80extern char * gBootArgsPtr;
81extern char * gBootArgsEnd;
82extern char booterCommand[BOOT_STRING_LEN];
83extern char booterParam[BOOT_STRING_LEN];
84
85
86//==========================================================================
87
88extern int gMenuItemCount;
89extern int gMenuRow;
90extern int gMenuHeight;
91extern int gMenuTop;
92extern int gMenuBottom;
93extern int gMenuSelection;
94
95extern int gMenuStart;
96extern int gMenuEnd;
97
98extern unsigned char chainbootdev;
99extern unsigned char chainbootflag;
100
101
102// Maximum config table value size
103#define VALUE_SIZE 2048
104*/
105#endif /* __BOOT2_OPTIONS_H */

Archive Download this file

Revision: 815