Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
30ed1000
Commit
30ed1000
authored
Feb 14, 2005
by
Marcus Meissner
Committed by
Alexandre Julliard
Feb 14, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Output some more informations.
Mark one global variable static.
parent
1afddb3c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
7 deletions
+5
-7
action.c
dlls/msi/action.c
+2
-2
errorinfo.c
dlls/ole32/errorinfo.c
+2
-4
shellpath.c
dlls/shell32/shellpath.c
+1
-1
No files found.
dlls/msi/action.c
View file @
30ed1000
...
...
@@ -267,7 +267,7 @@ struct _actions {
STANDARDACTIONHANDLER
handler
;
};
struct
_actions
StandardActions
[]
=
{
st
atic
st
ruct
_actions
StandardActions
[]
=
{
{
szAllocateRegistrySpace
,
NULL
},
{
szAppSearch
,
ACTION_AppSearch
},
{
szBindImage
,
NULL
},
...
...
@@ -3120,7 +3120,7 @@ static UINT ACTION_DuplicateFiles(MSIPACKAGE *package)
rc
=
ERROR_SUCCESS
;
if
(
rc
!=
ERROR_SUCCESS
)
ERR
(
"Failed to copy file
\n
"
);
ERR
(
"Failed to copy file
%s -> %s, last error %ld
\n
"
,
debugstr_w
(
file_source
),
debugstr_w
(
dest_path
),
GetLastError
()
);
FIXME
(
"We should track these duplicate files as well
\n
"
);
...
...
dlls/ole32/errorinfo.c
View file @
30ed1000
...
...
@@ -386,11 +386,10 @@ static HRESULT WINAPI ICreateErrorInfoImpl_SetHelpFile(
LPOLESTR
szHelpFile
)
{
_ICOM_THIS_From_ICreateErrorInfo
(
ErrorInfoImpl
,
iface
);
TRACE
(
"(%p
)
\n
"
,
This
);
TRACE
(
"(%p
,%s)
\n
"
,
This
,
debugstr_w
(
szHelpFile
)
);
if
(
This
->
bstrHelpFile
!=
NULL
)
ERRORINFO_SysFreeString
(
This
->
bstrHelpFile
);
This
->
bstrHelpFile
=
ERRORINFO_SysAllocString
(
szHelpFile
);
return
S_OK
;
}
...
...
@@ -399,9 +398,8 @@ static HRESULT WINAPI ICreateErrorInfoImpl_SetHelpContext(
DWORD
dwHelpContext
)
{
_ICOM_THIS_From_ICreateErrorInfo
(
ErrorInfoImpl
,
iface
);
TRACE
(
"(%p
)
\n
"
,
This
);
TRACE
(
"(%p
,%ld)
\n
"
,
This
,
dwHelpContext
);
This
->
m_dwHelpContext
=
dwHelpContext
;
return
S_OK
;
}
...
...
dlls/shell32/shellpath.c
View file @
30ed1000
...
...
@@ -1267,7 +1267,7 @@ static HRESULT _SHGetDefaultValue(BYTE folder, LPWSTR pszPath)
}
else
{
FIXME
(
"
LoadString failed, missing translation?
\n
"
);
FIXME
(
"
(%d,%s), LoadString failed, missing translation?
\n
"
,
folder
,
debugstr_w
(
pszPath
)
);
hr
=
E_FAIL
;
}
}
...
...
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