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
b24fc081
Commit
b24fc081
authored
Feb 25, 1999
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Authors: Paul Quinn <paulq@corel.ca>, Zygo Blaxell <zygob@corel.ca>
Modifies parameter list of a couple of functions to comply with SDK.
parent
83f39cf7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
winreg.h
include/winreg.h
+2
-2
registry.c
misc/registry.c
+5
-5
No files found.
include/winreg.h
View file @
b24fc081
...
...
@@ -202,8 +202,8 @@ DWORD WINAPI RegEnumValue32W(HKEY,DWORD,LPWSTR,LPDWORD,LPDWORD,LPDWORD,LPB
DWORD
WINAPI
RegOpenKey32A
(
HKEY
,
LPCSTR
,
LPHKEY
);
DWORD
WINAPI
RegOpenKey32W
(
HKEY
,
LPCWSTR
,
LPHKEY
);
#define RegOpenKey WINELIB_NAME_AW(RegOpenKey)
DWORD
WINAPI
RegQueryValue32A
(
HKEY
,
LP
STR
,
LPSTR
,
LPDWORD
);
DWORD
WINAPI
RegQueryValue32W
(
HKEY
,
LP
WSTR
,
LPWSTR
,
LPDWORD
);
DWORD
WINAPI
RegQueryValue32A
(
HKEY
,
LP
CSTR
,
LPSTR
,
LPLONG
);
DWORD
WINAPI
RegQueryValue32W
(
HKEY
,
LP
CWSTR
,
LPWSTR
,
LPLONG
);
#define RegQueryValue WINELIB_NAME_AW(RegQueryValue)
DWORD
WINAPI
RegQueryValueEx32A
(
HKEY
,
LPSTR
,
LPDWORD
,
LPDWORD
,
LPBYTE
,
LPDWORD
);
DWORD
WINAPI
RegQueryValueEx32W
(
HKEY
,
LPWSTR
,
LPDWORD
,
LPDWORD
,
LPBYTE
,
LPDWORD
);
...
...
misc/registry.c
View file @
b24fc081
...
...
@@ -2272,8 +2272,8 @@ DWORD WINAPI RegQueryValueEx32W( HKEY hkey, LPWSTR lpValueName,
/******************************************************************************
* RegQueryValue32W [ADVAPI32.159]
*/
DWORD
WINAPI
RegQueryValue32W
(
HKEY
hkey
,
LPWSTR
lpszSubKey
,
LPWSTR
lpszData
,
LP
DWORD
lpcbData
)
DWORD
WINAPI
RegQueryValue32W
(
HKEY
hkey
,
LP
C
WSTR
lpszSubKey
,
LPWSTR
lpszData
,
LP
LONG
lpcbData
)
{
HKEY
xhkey
;
DWORD
ret
,
lpdwType
;
...
...
@@ -2384,8 +2384,8 @@ DWORD WINAPI RegQueryValueEx16( HKEY hkey, LPSTR lpszValueName,
/******************************************************************************
* RegQueryValue32A [ADVAPI32.156]
*/
DWORD
WINAPI
RegQueryValue32A
(
HKEY
hkey
,
LPSTR
lpszSubKey
,
LPSTR
lpszData
,
LP
DWORD
lpcbData
)
DWORD
WINAPI
RegQueryValue32A
(
HKEY
hkey
,
LP
C
STR
lpszSubKey
,
LPSTR
lpszData
,
LP
LONG
lpcbData
)
{
HKEY
xhkey
;
DWORD
ret
,
dwType
;
...
...
@@ -3434,7 +3434,7 @@ LONG WINAPI RegGetKeySecurity( HKEY hkey,
/* FIXME: Check for valid SecurityInformation values */
if
(
*
lpcbSecurityDescriptor
<
sizeof
(
*
pSecurityDescriptor
))
if
(
*
lpcbSecurityDescriptor
<
sizeof
(
SECURITY_DESCRIPTOR
))
return
ERROR_INSUFFICIENT_BUFFER
;
FIXME
(
reg
,
"(%x,%ld,%p,%ld): stub
\n
"
,
hkey
,
SecurityInformation
,
...
...
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