Updated PCI IDs to latest snapshot.
[tangerine.git] / compiler / include / libraries / bootmenu.h
blob4fe18e46330075b8c307bc4f259ad2c18d49a652
1 #ifndef BOOTPREFS_H
2 #define BOOTPREFS_H
4 #include <libcore/base.h>
6 struct DefaultHidd {
7 TEXT libname[64];
8 TEXT hiddname[64];
9 };
11 struct BootConfig {
12 struct BootConfig *self;
13 /* prefered boot device */
14 struct BootNode *boot;
15 /* default hidds used in bootmenu and for fallback mode */
16 struct DefaultHidd defaultgfx;
17 struct DefaultHidd defaultkbd;
18 struct DefaultHidd defaultmouse;
21 struct BootMenuBase {
22 struct Node bm_Node;
23 struct ExpansionBase *bm_ExpansionBase;
24 struct GfxBase *bm_GfxBase;
25 struct IntuitionBase *bm_IntuitionBase;
26 struct BootConfig bm_BootConfig;
27 IPTR bm_Screen;
28 IPTR bm_Window;
29 IPTR bm_MainGadgets;
32 #endif