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
9f81a801
Commit
9f81a801
authored
Mar 07, 2005
by
Jason Edmeades
Committed by
Alexandre Julliard
Mar 07, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add stub for GetClassObject function.
parent
2565f731
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
1 deletion
+14
-1
atl.spec
dlls/atl/atl.spec
+1
-1
regsvr.c
dlls/atl/regsvr.c
+13
-0
No files found.
dlls/atl/atl.spec
View file @
9f81a801
1 stub DllCanUnloadNow
2 st
ub
DllGetClassObject
2 st
dcall -private DllGetClassObject(ptr ptr ptr) ATL_
DllGetClassObject
3 stdcall -private DllRegisterServer() ATL_DllRegisterServer
4 stdcall -private DllUnregisterServer() ATL_DllUnregisterServer
10 stdcall AtlAdvise(ptr ptr ptr ptr)
...
...
dlls/atl/regsvr.c
View file @
9f81a801
...
...
@@ -554,3 +554,16 @@ HRESULT WINAPI ATL_DllUnregisterServer(void)
hr
=
unregister_interfaces
(
interface_list
);
return
hr
;
}
/***********************************************************************
* DllGetClassObject (ATL.@)
*/
HRESULT
WINAPI
ATL_DllGetClassObject
(
REFCLSID
rclsid
,
REFIID
riid
,
LPVOID
*
ppv
)
{
if
(
IsEqualCLSID
(
rclsid
,
&
CLSID_ATLRegistrar
))
{
FIXME
(
"No COM Class for ATLRegistrar
\n
"
);
return
CLASS_E_CLASSNOTAVAILABLE
;
}
FIXME
(
"(%s, %s, %p): no interface found.
\n
"
,
debugstr_guid
(
rclsid
),
debugstr_guid
(
riid
),
ppv
);
return
CLASS_E_CLASSNOTAVAILABLE
;
}
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