Initial revision
[ssr] / StraySrc / Libraries / Steel / h / menuExt
1 /*
2 * menuExt
3 * A little menu extension for things like submenus.
4 *
5 * v. 1.00 (10 August 1991)
6 *
7 * © 1991-1998 Straylight
8 */
9
10 /*----- Licensing note ----------------------------------------------------*
11 *
12 * This file is part of Straylight's Steel library.
13 *
14 * Steel is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2, or (at your option)
17 * any later version.
18 *
19 * Steel is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with Steel. If not, write to the Free Software Foundation,
26 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
27 */
28
29 #ifndef __menuExt_h
30 #define __menuExt_h
31
32 #ifndef __menu_h
33 #include "menu.h"
34 #endif
35
36 #define menuExt_submenu(a,b,c) menu_submenu(a,b,c)
37
38 #endif