Added another menu item type (that cannot be chosen in CHOICE_MENUs).

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@8109 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2004-06-22 00:28:28 +00:00
parent 1511772218
commit 355bc28f32
1 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,6 @@
/*
** Copyright 2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
** Distributed under the terms of the OpenBeOS License.
** Distributed under the terms of the Haiku License.
*/
#ifndef KERNEL_BOOT_MENU_H
#define KERNEL_BOOT_MENU_H
@ -19,6 +19,7 @@ enum menu_item_type {
MENU_ITEM_STANDARD = 1,
MENU_ITEM_MARKABLE,
MENU_ITEM_TITLE,
MENU_ITEM_NO_CHOICE,
MENU_ITEM_SEPARATOR,
};