Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
82a7eb76
Commit
82a7eb76
authored
May 18, 2008
by
Vitaliy Margolen
Committed by
Alexandre Julliard
May 19, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winecfg: Remove mostly unused properties.h.
parent
66b3d415
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
14 additions
and
92 deletions
+14
-92
audio.c
programs/winecfg/audio.c
+7
-0
drivedetect.c
programs/winecfg/drivedetect.c
+6
-0
main.c
programs/winecfg/main.c
+0
-1
properties.h
programs/winecfg/properties.h
+0
-90
winecfg.h
programs/winecfg/winecfg.h
+1
-1
No files found.
programs/winecfg/audio.c
View file @
82a7eb76
...
...
@@ -49,6 +49,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(winecfg);
#define DRIVER_MASK 0x80000000
#define DEVICE_MASK 0x40000000
#define MAX_NAME_LENGTH 64
typedef
DWORD
(
WINAPI
*
MessagePtr
)(
UINT
,
UINT
,
DWORD
,
DWORD
,
DWORD
);
...
...
@@ -80,6 +81,12 @@ static const char* DSound_Bits[] = {
NULL
};
typedef
struct
{
UINT
nameID
;
const
char
*
szDriver
;
}
AUDIO_DRIVER
;
static
const
AUDIO_DRIVER
sAudioDrivers
[]
=
{
{
IDS_DRIVER_ALSA
,
"alsa"
},
{
IDS_DRIVER_OSS
,
"oss"
},
...
...
programs/winecfg/drivedetect.c
View file @
82a7eb76
...
...
@@ -43,6 +43,12 @@ WINE_DEFAULT_DEBUG_CHANNEL(winecfg);
BOOL
gui_mode
=
TRUE
;
static
long
working_mask
=
0
;
typedef
struct
{
const
char
*
szNode
;
int
nType
;
}
DEV_NODES
;
#ifdef HAVE_MNTENT_H
static
const
DEV_NODES
sDeviceNodes
[]
=
{
...
...
programs/winecfg/main.c
View file @
82a7eb76
...
...
@@ -31,7 +31,6 @@
#include <objbase.h>
#include <wine/debug.h>
#include "properties.h"
#include "resource.h"
#include "winecfg.h"
...
...
programs/winecfg/properties.h
deleted
100644 → 0
View file @
66b3d415
/*
* WineCfg configuration properties
*
* Copyright 2002 Jaco Greeff
* Copyright 2003 Dimitrie O. Paun
* Copyright 2003 Mark Westcott
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*
*/
#ifndef WINE_CFG_PROPERTIES_H
#define WINE_CFG_PROPERTIES_H
#include <stdarg.h>
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
#include "winnls.h"
#include "commctrl.h"
#define MAX_NAME_LENGTH 64
#define MAX_VERSION_LENGTH 48
#define MAX_DESCRIPTION_LENGTH 128
#define DLL_NATIVE 0x0000
#define DLL_BUILTIN 0x0001
typedef
struct
{
char
szName
[
MAX_NAME_LENGTH
];
int
nType
;
}
DLL_DESC
;
typedef
struct
{
char
szName
[
MAX_NAME_LENGTH
];
char
szWinVer
[
MAX_VERSION_LENGTH
];
char
szDOSVer
[
MAX_VERSION_LENGTH
];
HDPA
DLLs
;
}
APP_DESC
;
typedef
struct
{
UINT
nameID
;
char
szDriver
[
MAX_NAME_LENGTH
];
}
AUDIO_DRIVER
;
typedef
struct
{
char
szX11Display
[
MAX_NAME_LENGTH
];
int
nSysColors
;
int
nPrivateMap
;
int
nPerfect
;
int
nDepth
;
int
nManaged
;
int
nDesktopSizeX
;
int
nDesktopSizeY
;
int
nDGA
;
int
nXVidMode
;
int
nXShm
;
int
nTextCP
;
int
nXVideoPort
;
int
nTakeFocus
;
int
nDXGrab
;
int
nDoubleBuffered
;
int
nSynchronous
;
}
X11DRV_DESC
;
typedef
struct
{
char
szNode
[
MAX_NAME_LENGTH
];
int
nType
;
}
DEV_NODES
;
#endif
programs/winecfg/winecfg.h
View file @
82a7eb76
...
...
@@ -31,7 +31,7 @@
#include "wingdi.h"
#include "winuser.h"
#include "winnls.h"
#include "
properties
.h"
#include "
commctrl
.h"
#define IS_OPTION_TRUE(ch) \
((ch) == 'y' || (ch) == 'Y' || (ch) == 't' || (ch) == 'T' || (ch) == '1')
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment