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
732376d5
Commit
732376d5
authored
Jan 04, 2013
by
Jacek Caban
Committed by
Alexandre Julliard
Jan 04, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
atl: Added support for category maps in AtlModuleRegisterServer.
parent
cc18fc0f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
atl_main.c
dlls/atl/atl_main.c
+11
-0
No files found.
dlls/atl/atl_main.c
View file @
732376d5
...
...
@@ -220,6 +220,17 @@ HRESULT WINAPI AtlModuleRegisterServer(_ATL_MODULEW* pM, BOOL bRegTypeLib, const
hRes
=
obj
->
pfnUpdateRegistry
(
TRUE
);
/* register */
if
(
FAILED
(
hRes
))
return
hRes
;
if
(
pM
->
cbSize
>
ATLVer1Size
)
{
const
struct
_ATL_CATMAP_ENTRY
*
catmap
;
catmap
=
((
const
_ATL_OBJMAP_ENTRYW
*
)
obj
)
->
pfnGetCategoryMap
();
if
(
catmap
)
{
hRes
=
AtlRegisterClassCategoriesHelper
(
obj
->
pclsid
,
catmap
,
TRUE
);
if
(
FAILED
(
hRes
))
return
hRes
;
}
}
}
}
...
...
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