Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
0e01daa3
Commit
0e01daa3
authored
Jan 26, 2009
by
Francois Gouget
Committed by
Alexandre Julliard
Jan 26, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winecfg: Make enumerate_valuesW() static.
parent
0a6665bf
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
2 deletions
+1
-2
winecfg.c
programs/winecfg/winecfg.c
+1
-1
winecfg.h
programs/winecfg/winecfg.h
+0
-1
No files found.
programs/winecfg/winecfg.c
View file @
0e01daa3
...
@@ -478,7 +478,7 @@ void set_reg_key_dwordW(HKEY root, const WCHAR *path, const WCHAR *name, DWORD v
...
@@ -478,7 +478,7 @@ void set_reg_key_dwordW(HKEY root, const WCHAR *path, const WCHAR *name, DWORD v
* you are expected to HeapFree each element of the array, which is null
* you are expected to HeapFree each element of the array, which is null
* terminated, as well as the array itself.
* terminated, as well as the array itself.
*/
*/
WCHAR
**
enumerate_valuesW
(
HKEY
root
,
WCHAR
*
path
)
static
WCHAR
**
enumerate_valuesW
(
HKEY
root
,
WCHAR
*
path
)
{
{
HKEY
key
;
HKEY
key
;
DWORD
res
,
i
=
0
,
valueslen
=
0
;
DWORD
res
,
i
=
0
,
valueslen
=
0
;
...
...
programs/winecfg/winecfg.h
View file @
0e01daa3
...
@@ -54,7 +54,6 @@ extern WCHAR* current_app; /* NULL means editing global settings */
...
@@ -54,7 +54,6 @@ extern WCHAR* current_app; /* NULL means editing global settings */
void
set_reg_keyW
(
HKEY
root
,
const
WCHAR
*
path
,
const
WCHAR
*
name
,
const
WCHAR
*
value
);
void
set_reg_keyW
(
HKEY
root
,
const
WCHAR
*
path
,
const
WCHAR
*
name
,
const
WCHAR
*
value
);
void
set_reg_key_dwordW
(
HKEY
root
,
const
WCHAR
*
path
,
const
WCHAR
*
name
,
DWORD
value
);
void
set_reg_key_dwordW
(
HKEY
root
,
const
WCHAR
*
path
,
const
WCHAR
*
name
,
DWORD
value
);
WCHAR
*
get_reg_keyW
(
HKEY
root
,
const
WCHAR
*
path
,
const
WCHAR
*
name
,
const
WCHAR
*
def
);
WCHAR
*
get_reg_keyW
(
HKEY
root
,
const
WCHAR
*
path
,
const
WCHAR
*
name
,
const
WCHAR
*
def
);
WCHAR
**
enumerate_valuesW
(
HKEY
root
,
WCHAR
*
path
);
void
set_reg_key
(
HKEY
root
,
const
char
*
path
,
const
char
*
name
,
const
char
*
value
);
void
set_reg_key
(
HKEY
root
,
const
char
*
path
,
const
char
*
name
,
const
char
*
value
);
void
set_reg_key_dword
(
HKEY
root
,
const
char
*
path
,
const
char
*
name
,
DWORD
value
);
void
set_reg_key_dword
(
HKEY
root
,
const
char
*
path
,
const
char
*
name
,
DWORD
value
);
...
...
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