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
80af4940
Commit
80af4940
authored
Aug 22, 2005
by
Stefan Leichter
Committed by
Alexandre Julliard
Aug 22, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Print something useful in trace and fixme.
parent
6301fec0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
registrar.c
dlls/atl/registrar.c
+5
-5
No files found.
dlls/atl/registrar.c
View file @
80af4940
...
...
@@ -800,20 +800,20 @@ HRESULT WINAPI AtlModuleUpdateRegistryFromResourceD(_ATL_MODULEW* pM, LPCOLESTR
*/
WCHAR
module_name
[
MAX_PATH
];
TRACE
(
"stub %p (%s), %s, %d, %p, %p
\n
"
,
hInst
,
debugstr_w
(
module_name
),
debugstr_w
(
lpszRes
),
bRegister
,
pMapEntries
,
pReg
);
if
(
pMapEntries
||
pReg
)
{
FIXME
(
"MapEntries and Registrar parameter not supported
\n
"
);
return
E_FAIL
;
}
if
(
!
GetModuleFileNameW
(
lhInst
,
module_name
,
MAX_PATH
))
{
FIXME
(
"
%p (%s)
did not get module name
\n
"
,
lhInst
,
debugstr_w
(
module_name
)
);
FIXME
(
"
hinst %p:
did not get module name
\n
"
,
lhInst
);
return
E_FAIL
;
}
TRACE
(
"%p (%s), %s, %d, %p, %p
\n
"
,
hInst
,
debugstr_w
(
module_name
),
debugstr_w
(
lpszRes
),
bRegister
,
pMapEntries
,
pReg
);
return
do_register_dll_server
(
module_name
,
lpszRes
,
bRegister
);
}
...
...
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