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 MENU_H
6#define MENU_H
7
8
9#include <boot/vfs.h>
10
11
12class PathBlocklist;
13
14
15extern status_t user_menu(BootVolume& _bootVolume,
16	PathBlocklist& _pathBlocklist);
17
18
19#endif	/* MENU_H */
20