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
646a49b7
Commit
646a49b7
authored
Oct 12, 2010
by
Nikolay Sivov
Committed by
Alexandre Julliard
Oct 13, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shlwapi/assoc: Fix arguments tracing.
parent
8c7e2f99
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
assoc.c
dlls/shlwapi/assoc.c
+6
-6
No files found.
dlls/shlwapi/assoc.c
View file @
646a49b7
...
...
@@ -113,7 +113,7 @@ HRESULT WINAPI AssocQueryKeyW(ASSOCF cfFlags, ASSOCKEY assockey, LPCWSTR pszAsso
HRESULT
hRet
;
IQueryAssociations
*
lpAssoc
;
TRACE
(
"(0x%
8x,0x%8x
,%s,%s,%p)
\n
"
,
cfFlags
,
assockey
,
debugstr_w
(
pszAssoc
),
TRACE
(
"(0x%
x,%d
,%s,%s,%p)
\n
"
,
cfFlags
,
assockey
,
debugstr_w
(
pszAssoc
),
debugstr_w
(
pszExtra
),
phkeyOut
);
hRet
=
AssocCreate
(
CLSID_QueryAssociations
,
&
IID_IQueryAssociations
,
(
void
**
)
&
lpAssoc
);
...
...
@@ -152,7 +152,7 @@ HRESULT WINAPI AssocQueryKeyA(ASSOCF cfFlags, ASSOCKEY assockey, LPCSTR pszAssoc
WCHAR
szExtraW
[
MAX_PATH
],
*
lpszExtraW
=
NULL
;
HRESULT
hRet
=
E_OUTOFMEMORY
;
TRACE
(
"(0x%
8x,0x%8x
,%s,%s,%p)
\n
"
,
cfFlags
,
assockey
,
debugstr_a
(
pszAssoc
),
TRACE
(
"(0x%
x,%d
,%s,%s,%p)
\n
"
,
cfFlags
,
assockey
,
debugstr_a
(
pszAssoc
),
debugstr_a
(
pszExtra
),
phkeyOut
);
if
(
SHLWAPI_ParamAToW
(
pszAssoc
,
szAssocW
,
MAX_PATH
,
&
lpszAssocW
)
&&
...
...
@@ -181,7 +181,7 @@ HRESULT WINAPI AssocQueryStringW(ASSOCF cfFlags, ASSOCSTR str, LPCWSTR pszAssoc,
HRESULT
hRet
;
IQueryAssociations
*
lpAssoc
;
TRACE
(
"(0x%
8x,0x%8x
,%s,%s,%p,%p)
\n
"
,
cfFlags
,
str
,
debugstr_w
(
pszAssoc
),
TRACE
(
"(0x%
x,%d
,%s,%s,%p,%p)
\n
"
,
cfFlags
,
str
,
debugstr_w
(
pszAssoc
),
debugstr_w
(
pszExtra
),
pszOut
,
pcchOut
);
if
(
!
pcchOut
)
...
...
@@ -225,7 +225,7 @@ HRESULT WINAPI AssocQueryStringA(ASSOCF cfFlags, ASSOCSTR str, LPCSTR pszAssoc,
WCHAR
szExtraW
[
MAX_PATH
],
*
lpszExtraW
=
NULL
;
HRESULT
hRet
=
E_OUTOFMEMORY
;
TRACE
(
"(0x%
8x,0x%8x
,%s,%s,%p,%p)
\n
"
,
cfFlags
,
str
,
debugstr_a
(
pszAssoc
),
TRACE
(
"(0x%
x,0x%d
,%s,%s,%p,%p)
\n
"
,
cfFlags
,
str
,
debugstr_a
(
pszAssoc
),
debugstr_a
(
pszExtra
),
pszOut
,
pcchOut
);
if
(
!
pcchOut
)
...
...
@@ -278,7 +278,7 @@ HRESULT WINAPI AssocQueryStringByKeyW(ASSOCF cfFlags, ASSOCSTR str, HKEY hkAssoc
HRESULT
hRet
;
IQueryAssociations
*
lpAssoc
;
TRACE
(
"(0x%
8x,0x%8x
,%p,%s,%p,%p)
\n
"
,
cfFlags
,
str
,
hkAssoc
,
TRACE
(
"(0x%
x,0x%d
,%p,%s,%p,%p)
\n
"
,
cfFlags
,
str
,
hkAssoc
,
debugstr_w
(
pszExtra
),
pszOut
,
pcchOut
);
hRet
=
AssocCreate
(
CLSID_QueryAssociations
,
&
IID_IQueryAssociations
,
(
void
**
)
&
lpAssoc
);
...
...
@@ -320,7 +320,7 @@ HRESULT WINAPI AssocQueryStringByKeyA(ASSOCF cfFlags, ASSOCSTR str, HKEY hkAssoc
WCHAR
szReturnW
[
MAX_PATH
],
*
lpszReturnW
=
szReturnW
;
HRESULT
hRet
=
E_OUTOFMEMORY
;
TRACE
(
"(0x%
8x,0x%8x
,%p,%s,%p,%p)
\n
"
,
cfFlags
,
str
,
hkAssoc
,
TRACE
(
"(0x%
x,0x%d
,%p,%s,%p,%p)
\n
"
,
cfFlags
,
str
,
hkAssoc
,
debugstr_a
(
pszExtra
),
pszOut
,
pcchOut
);
if
(
!
pcchOut
)
...
...
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