Files
lcdproc/server/menus.h
T

28 lines
589 B
C
Raw Normal View History

/*
* menus.h
* This file is part of LCDd, the lcdproc server.
*
* This file is released under the GNU General Public License. Refer to the
* COPYING file distributed with this package.
*
* Copyright (c) 1999, William Ferrell, Scott Scriven
*
*/
1999-12-09 23:15:14 +00:00
#ifndef MENUS_H
#define MENUS_H
#include "menu.h"
2001-12-30 00:15:25 +00:00
/* These probably don't need to be defined here... */
1999-12-09 23:15:14 +00:00
extern menu_item main_menu[];
extern menu_item options_menu[];
extern menu_item screens_menu[];
extern menu_item shutdown_menu[];
extern menu_item Backlight_menu[];
2001-12-30 00:15:25 +00:00
/* Brings up the main menu... */
void server_menu ();
1999-12-09 23:15:14 +00:00
#endif