23077
|
1 /*
|
23079
|
2 * MPlayer GUI for Win32
|
|
3 * Copyright (C) 2003 Sascha Sommer <saschasommer@freenet.de>
|
|
4 * Copyright (C) 2006 Erik Augustson <erik_27can@yahoo.com>
|
|
5 * Copyright (C) 2006 Gianluigi Tiesi <sherpya@netfarm.it>
|
|
6 *
|
|
7 * This file is part of MPlayer.
|
|
8 *
|
|
9 * MPlayer 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 * MPlayer 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 MPlayer; if not, write to the Free Software
|
|
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
22 */
|
23077
|
23
|
|
24 #ifndef _WINCFG_H
|
|
25 #define _WINCFG_H
|
|
26
|
|
27 extern char *skinName;
|
|
28 extern int sub_window;
|
|
29 extern int console;
|
|
30
|
|
31 extern int gui_save_pos;
|
|
32 extern int gui_main_pos_x;
|
|
33 extern int gui_main_pos_y;
|
|
34 extern int gui_sub_pos_x;
|
|
35 extern int gui_sub_pos_y;
|
|
36
|
|
37 extern int cfg_read(void);
|
|
38 extern int cfg_write(void);
|
|
39
|
|
40 #endif
|