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
67d429f0
Commit
67d429f0
authored
Mar 29, 2012
by
Christian Costa
Committed by
Alexandre Julliard
Mar 29, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
strmbase: Display dll in which we are searching a class to instanciate.
parent
2f87a5d4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
dllfunc.c
dlls/strmbase/dllfunc.c
+4
-1
No files found.
dlls/strmbase/dllfunc.c
View file @
67d429f0
...
...
@@ -362,7 +362,10 @@ HRESULT WINAPI STRMBASE_DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *
if
(
i
==
g_cTemplates
)
{
ERR
(
"%s: no class found.
\n
"
,
debugstr_guid
(
rclsid
));
char
dllname
[
MAX_PATH
];
if
(
!
GetModuleFileNameA
(
g_hInst
,
dllname
,
sizeof
(
dllname
)))
strcpy
(
dllname
,
"???"
);
ERR
(
"%s: no class found in %s.
\n
"
,
debugstr_guid
(
rclsid
),
dllname
);
return
CLASS_E_CLASSNOTAVAILABLE
;
}
else
if
(
!
pList
->
m_lpfnNew
)
...
...
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