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
b865c07d
Commit
b865c07d
authored
Jun 21, 2006
by
James Hawkins
Committed by
Alexandre Julliard
Jun 22, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
atl: Add a stub implementation of AtlModuleLoadTypeLib.
parent
09216669
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
atl.spec
dlls/atl/atl.spec
+1
-1
atl_main.c
dlls/atl/atl_main.c
+7
-0
No files found.
dlls/atl/atl.spec
View file @
b865c07d
...
...
@@ -47,6 +47,6 @@
53 stub AtlIPersistPropertyBag_Save
54 stub AtlGetObjectSourceInterface
55 stub AtlModuleUnRegisterTypeLib
56 st
ub AtlModuleLoadTypeLib
56 st
dcall AtlModuleLoadTypeLib(ptr wstr ptr ptr)
57 stdcall AtlModuleUnregisterServerEx(ptr long ptr)
58 stdcall AtlModuleAddTermFunc(ptr ptr long)
dlls/atl/atl_main.c
View file @
b865c07d
...
...
@@ -96,6 +96,13 @@ HRESULT WINAPI AtlModuleInit(_ATL_MODULEA* pM, _ATL_OBJMAP_ENTRYA* p, HINSTANCE
return
S_OK
;
}
HRESULT
WINAPI
AtlModuleLoadTypeLib
(
_ATL_MODULEA
*
pM
,
LPCOLESTR
lpszIndex
,
BSTR
*
pbstrPath
,
ITypeLib
**
ppTypeLib
)
{
FIXME
(
"(%p, %s, %p, %p): stub
\n
"
,
pM
,
debugstr_w
(
lpszIndex
),
pbstrPath
,
ppTypeLib
);
return
E_FAIL
;
}
HRESULT
WINAPI
AtlModuleTerm
(
_ATL_MODULEA
*
pM
)
{
_ATL_TERMFUNC_ELEM
*
iter
=
pM
->
m_pTermFuncs
,
*
tmp
;
...
...
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