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
c0cfd44c
Commit
c0cfd44c
authored
Dec 28, 2012
by
Jacek Caban
Committed by
Alexandre Julliard
Dec 28, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
atl: Reimplemented AtlModuleRegisterTypeLib on top of AtlRegisterTypeLib.
parent
ef3f65b5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
18 deletions
+6
-18
configure
configure
+1
-1
configure.ac
configure.ac
+1
-1
Makefile.in
dlls/atl/Makefile.in
+1
-1
atl_main.c
dlls/atl/atl_main.c
+2
-15
Makefile.in
dlls/atl80/Makefile.in
+1
-0
No files found.
configure
View file @
c0cfd44c
...
...
@@ -15380,7 +15380,7 @@ wine_fn_config_dll atl enable_atl implib
wine_fn_config_test dlls/atl/tests atl_test
wine_fn_config_dll atl100 enable_atl100 implib
wine_fn_config_test dlls/atl100/tests atl100_test
wine_fn_config_dll atl80 enable_atl80
wine_fn_config_dll atl80 enable_atl80
implib
wine_fn_config_dll authz enable_authz
wine_fn_config_dll avicap32 enable_avicap32 implib
wine_fn_config_dll avifil32 enable_avifil32 implib,po
...
...
configure.ac
View file @
c0cfd44c
...
...
@@ -2555,7 +2555,7 @@ WINE_CONFIG_DLL(atl,,[implib])
WINE_CONFIG_TEST(dlls/atl/tests)
WINE_CONFIG_DLL(atl100,,[implib])
WINE_CONFIG_TEST(dlls/atl100/tests)
WINE_CONFIG_DLL(atl80)
WINE_CONFIG_DLL(atl80
,,[implib]
)
WINE_CONFIG_DLL(authz)
WINE_CONFIG_DLL(avicap32,,[implib])
WINE_CONFIG_DLL(avifil32,,[implib,po])
...
...
dlls/atl/Makefile.in
View file @
c0cfd44c
MODULE
=
atl.dll
IMPORTLIB
=
atl
IMPORTS
=
uuid atl100 oleaut32 ole32 user32
IMPORTS
=
uuid atl
80 atl
100 oleaut32 ole32 user32
EXTRADEFS
=
-D_ATL_VER
=
_ATL_VER_30
C_SRCS
=
atl_main.c
...
...
dlls/atl/atl_main.c
View file @
c0cfd44c
...
...
@@ -225,7 +225,7 @@ HRESULT WINAPI AtlModuleRegisterServer(_ATL_MODULEW* pM, BOOL bRegTypeLib, const
if
(
bRegTypeLib
)
{
hRes
=
Atl
ModuleRegisterTypeLib
(
pM
,
NULL
);
hRes
=
Atl
RegisterTypeLib
(
pM
->
m_hInstTypeLib
,
NULL
);
if
(
FAILED
(
hRes
))
return
hRes
;
}
...
...
@@ -276,25 +276,12 @@ HRESULT WINAPI AtlModuleGetClassObject(_ATL_MODULEW *pm, REFCLSID rclsid,
*/
HRESULT
WINAPI
AtlModuleRegisterTypeLib
(
_ATL_MODULEW
*
pm
,
LPCOLESTR
lpszIndex
)
{
HRESULT
hRes
;
BSTR
path
;
ITypeLib
*
typelib
;
TRACE
(
"%p %s
\n
"
,
pm
,
debugstr_w
(
lpszIndex
));
if
(
!
pm
)
return
E_INVALIDARG
;
hRes
=
AtlModuleLoadTypeLib
(
pm
,
lpszIndex
,
&
path
,
&
typelib
);
if
(
SUCCEEDED
(
hRes
))
{
hRes
=
RegisterTypeLib
(
typelib
,
path
,
NULL
);
/* FIXME: pass help directory */
ITypeLib_Release
(
typelib
);
SysFreeString
(
path
);
}
return
hRes
;
return
AtlRegisterTypeLib
(
pm
->
m_hInstTypeLib
,
lpszIndex
);
}
/***********************************************************************
...
...
dlls/atl80/Makefile.in
View file @
c0cfd44c
MODULE
=
atl80.dll
IMPORTLIB
=
atl80
IMPORTS
=
atl100 oleaut32
EXTRADEFS
=
-D_ATL_VER
=
_ATL_VER_80
...
...
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