mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
[WINESYNC] 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> wine commit id ff0445a5de192b2984bb558ac54e7f4d54e96129 by Hugh McMaster <hugh.mcmaster@outlook.com>
This commit is contained in:
parent
df92c0464b
commit
64c8452688
3 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -4,4 +4,4 @@ directories:
|
|||
files:
|
||||
programs/reg/resource.h: base/applications/cmdutils/reg/resource.h
|
||||
tags:
|
||||
wine: 9780dfc01a460264b6088fe23eada214c21441bd
|
||||
wine: ff0445a5de192b2984bb558ac54e7f4d54e96129
|
||||
|
|
Loading…
Reference in a new issue