Fixed some common spelling errors.
[wine] / programs / winecfg / winecfg.h
1 /*
2  * WineCfg configuration management
3  *
4  * Copyright 2002 Jaco Greeff
5  * Copyright 2003 Dimitrie O. Paun
6  *
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.
11  *
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.
16  *
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
20  *
21  */
22
23 #ifndef WINE_CFG_H
24 #define WINE_CFG_H
25
26 #include "properties.h"
27
28 typedef struct structWineCfg
29 {
30     char   szWinVer[MAX_VERSION_LENGTH];
31     char   szWinLook[MAX_VERSION_LENGTH];
32     char   szDOSVer[MAX_VERSION_LENGTH];
33
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];
39
40     char   szGraphDriver[MAX_NAME_LENGTH];
41
42     HDPA     pDlls;
43     HDPA     pApps;
44
45     X11DRV_DESC sX11Drv;
46 } WINECFG_DESC;
47
48 WINECFG_DESC *allocConfig(void);
49 int freeConfig(WINECFG_DESC *pCfg);
50
51 int loadConfig(WINECFG_DESC *pCfg);
52 int saveConfig(const WINECFG_DESC *pCfg);
53
54 #endif