Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-fonts
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
Aleksandr Isakov
wine-fonts
Commits
ff0445a5
Commit
ff0445a5
authored
Jun 16, 2021
by
Hugh McMaster
Committed by
Alexandre Julliard
Jun 16, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
reg/tests: Update delete_value() declaration to deconstify 'const HKEY'.
Signed-off-by:
Hugh McMaster
<
hugh.mcmaster@outlook.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
9780dfc0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
add.c
programs/reg/tests/add.c
+1
-1
reg_test.h
programs/reg/tests/reg_test.h
+1
-1
No files found.
programs/reg/tests/add.c
View file @
ff0445a5
...
...
@@ -205,7 +205,7 @@ void add_value_(const char *file, unsigned line, HKEY hkey, const char *name,
lok
(
err
==
ERROR_SUCCESS
,
"RegSetValueExA failed: got error %d
\n
"
,
err
);
}
void
delete_value_
(
const
char
*
file
,
unsigned
line
,
const
HKEY
hkey
,
const
char
*
name
)
void
delete_value_
(
const
char
*
file
,
unsigned
line
,
HKEY
hkey
,
const
char
*
name
)
{
LONG
err
;
...
...
programs/reg/tests/reg_test.h
View file @
ff0445a5
...
...
@@ -71,7 +71,7 @@ void add_value_(const char *file, unsigned line, HKEY hkey, const char *name,
DWORD
type
,
const
void
*
data
,
size_t
size
);
#define delete_value(k,n) delete_value_(__FILE__,__LINE__,k,n)
void
delete_value_
(
const
char
*
file
,
unsigned
line
,
const
HKEY
hkey
,
const
char
*
name
);
void
delete_value_
(
const
char
*
file
,
unsigned
line
,
HKEY
hkey
,
const
char
*
name
);
/* export.c */
#define compare_export(f,e,todo) compare_export_(__FILE__,__LINE__,f,e,todo)
...
...
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