]> git.sesse.net Git - vlc/blob - modules/misc/osd/osd_menu.h
Fix merge conflicts for src/osd/osd.c
[vlc] / modules / misc / osd / osd_menu.h
1 /*****************************************************************************
2  * parser.c :  OSD import module
3  *****************************************************************************
4  * Copyright (C) 2007 M2X
5  * $Id: $
6  *
7  * Authors: Jean-Paul Saman
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #ifndef _OSD_MENU_PARSER_H_
25 #define _OSD_MENU_PARSER_H_
26
27 /* OSD Menu structure support routines for internal use by
28  * OSD Menu configuration file parsers only.
29  */
30 osd_menu_t   *osd_MenuNew( osd_menu_t *, const char *, int, int );
31 osd_button_t *osd_ButtonNew( const char *, int, int );
32 osd_state_t  *osd_StateNew( vlc_object_t *, const char *, const char * );
33
34 void osd_MenuFree  ( vlc_object_t *, osd_menu_t * );
35 void osd_ButtonFree( vlc_object_t *, osd_button_t * );
36 void osd_StatesFree( vlc_object_t *, osd_state_t * );
37
38 #endif