2 * WineCfg configuration management
4 * Copyright 2002 Jaco Greeff
5 * Copyright 2003 Dimitrie O. Paun
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 #include "properties.h"
28 typedef struct structWineCfg
30 char szWinVer[MAX_VERSION_LENGTH];
31 char szWinLook[MAX_VERSION_LENGTH];
32 char szDOSVer[MAX_VERSION_LENGTH];
34 char szWinDir[MAX_PATH];
35 char szWinSysDir[MAX_PATH];
36 char szWinPath[MAX_PATH];
37 char szWinTmpDir[MAX_PATH];
38 char szWinProfDir[MAX_PATH];
40 char szGraphDriver[MAX_NAME_LENGTH];
48 WINECFG_DESC *allocConfig(void);
49 int freeConfig(WINECFG_DESC *pCfg);
51 int loadConfig(WINECFG_DESC *pCfg);
52 int saveConfig(const WINECFG_DESC *pCfg);