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
407c84e5
Commit
407c84e5
authored
Sep 28, 2004
by
James Hawkins
Committed by
Alexandre Julliard
Sep 28, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stub implementation of AtlModuleUnregisterServerEx.
parent
7c30feb9
Hide whitespace changes
Inline
Side-by-side
Showing
3 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
+6
-0
atlbase.h
dlls/atl/atlbase.h
+1
-0
No files found.
dlls/atl/atl.spec
View file @
407c84e5
...
...
@@ -48,5 +48,5 @@
54 stub AtlGetObjectSourceInterface
55 stub AtlModuleUnRegisterTypeLib
56 stub AtlModuleLoadTypeLib
57 st
ub AtlModuleUnregisterServerEx
57 st
dcall AtlModuleUnregisterServerEx(ptr long ptr)
58 stub AtlModuleAddTermFunc
dlls/atl/atl_main.c
View file @
407c84e5
...
...
@@ -109,6 +109,12 @@ HRESULT WINAPI AtlModuleRegisterClassObjects(_ATL_MODULEA *pM, DWORD dwClsContex
return
hRes
;
}
HRESULT
WINAPI
AtlModuleUnregisterServerEx
(
_ATL_MODULEA
*
pM
,
BOOL
bUnRegTypeLib
,
const
CLSID
*
pCLSID
)
{
FIXME
(
"(%p, %i, %p) stub
\n
"
,
pM
,
bUnRegTypeLib
,
pCLSID
);
return
S_OK
;
}
HRESULT
WINAPI
AtlInternalQueryInterface
(
LPVOID
this
,
const
_ATL_INTMAP_ENTRY
*
pEntries
,
REFIID
iid
,
LPVOID
*
ppvObject
)
{
int
i
=
0
;
...
...
dlls/atl/atlbase.h
View file @
407c84e5
...
...
@@ -130,6 +130,7 @@ typedef struct _ATL_INTMAP_ENTRY_TAG
HRESULT
WINAPI
AtlModuleInit
(
_ATL_MODULEA
*
pM
,
_ATL_OBJMAP_ENTRYA
*
p
,
HINSTANCE
h
);
HRESULT
WINAPI
AtlModuleRegisterClassObjects
(
_ATL_MODULEA
*
pM
,
DWORD
dwClsContext
,
DWORD
dwFlags
);
HRESULT
WINAPI
AtlModuleUnregisterServerEx
(
_ATL_MODULEA
*
pM
,
BOOL
bUnRegTypeLib
,
const
CLSID
*
pCLSID
);
HRESULT
WINAPI
AtlModuleTerm
(
_ATL_MODULEA
*
pM
);
HRESULT
WINAPI
AtlInternalQueryInterface
(
LPVOID
pThis
,
const
_ATL_INTMAP_ENTRY
*
pEntries
,
REFIID
iid
,
LPVOID
*
ppvObject
);
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