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
719aa10a
Commit
719aa10a
authored
Jul 28, 2006
by
Andrew Talbot
Committed by
Alexandre Julliard
Jul 29, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advpack/tests: Write-strings warnings fix.
parent
81592e49
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
advpack.c
dlls/advpack/tests/advpack.c
+4
-4
No files found.
dlls/advpack/tests/advpack.c
View file @
719aa10a
...
...
@@ -36,10 +36,10 @@
static
HRESULT
(
WINAPI
*
pCloseINFEngine
)(
HINF
);
static
HRESULT
(
WINAPI
*
pDelNode
)(
LPCSTR
,
DWORD
);
static
HRESULT
(
WINAPI
*
pGetVersionFromFile
)(
LPSTR
,
LPDWORD
,
LPDWORD
,
BOOL
);
static
HRESULT
(
WINAPI
*
pGetVersionFromFile
)(
LP
C
STR
,
LPDWORD
,
LPDWORD
,
BOOL
);
static
HRESULT
(
WINAPI
*
pOpenINFEngine
)(
PCSTR
,
PCSTR
,
DWORD
,
HINF
*
,
PVOID
);
static
HRESULT
(
WINAPI
*
pSetPerUserSecValues
)(
PPERUSERSECTION
pPerUser
);
static
HRESULT
(
WINAPI
*
pTranslateInfString
)(
LP
STR
,
LPSTR
,
LPSTR
,
LP
STR
,
LPSTR
,
DWORD
,
LPDWORD
,
LPVOID
);
static
HRESULT
(
WINAPI
*
pTranslateInfString
)(
LP
CSTR
,
LPCSTR
,
LPCSTR
,
LPC
STR
,
LPSTR
,
DWORD
,
LPDWORD
,
LPVOID
);
static
HRESULT
(
WINAPI
*
pTranslateInfStringEx
)(
HINF
,
PCSTR
,
PCSTR
,
PCSTR
,
PSTR
,
DWORD
,
PDWORD
,
PVOID
);
static
CHAR
PROG_FILES
[
MAX_PATH
];
...
...
@@ -397,7 +397,7 @@ static void translateinfstringex_test(void)
DeleteFileA
(
"c:
\\
test.inf"
);
}
static
BOOL
check_reg_str
(
HKEY
hkey
,
LP
STR
name
,
LP
STR
value
)
static
BOOL
check_reg_str
(
HKEY
hkey
,
LP
CSTR
name
,
LPC
STR
value
)
{
DWORD
size
=
MAX_PATH
;
char
check
[
MAX_PATH
];
...
...
@@ -408,7 +408,7 @@ static BOOL check_reg_str(HKEY hkey, LPSTR name, LPSTR value)
return
!
lstrcmp
(
check
,
value
);
}
static
BOOL
check_reg_dword
(
HKEY
hkey
,
LPSTR
name
,
DWORD
value
)
static
BOOL
check_reg_dword
(
HKEY
hkey
,
LP
C
STR
name
,
DWORD
value
)
{
DWORD
size
=
sizeof
(
DWORD
);
DWORD
check
;
...
...
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