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
87ecfab4
Commit
87ecfab4
authored
May 06, 2002
by
Marcus Meissner
Committed by
Alexandre Julliard
May 06, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Small hack to make InstallShield v6 work better.
parent
5b63cc22
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
2 deletions
+28
-2
typelib.c
dlls/oleaut32/typelib.c
+28
-2
No files found.
dlls/oleaut32/typelib.c
View file @
87ecfab4
...
@@ -468,10 +468,36 @@ HRESULT WINAPI RegisterTypeLib(
...
@@ -468,10 +468,36 @@ HRESULT WINAPI RegisterTypeLib(
TYPEATTR
*
tattr
=
NULL
;
TYPEATTR
*
tattr
=
NULL
;
ITypeInfo_GetTypeAttr
(
tinfo
,
&
tattr
);
ITypeInfo_GetTypeAttr
(
tinfo
,
&
tattr
);
if
(
tattr
)
{
if
(
tattr
)
{
TRACE_
(
typelib
)(
"guid=%s, flags=%04x
\n
"
,
TRACE_
(
typelib
)(
"guid=%s, flags=%04x
(
"
,
debugstr_guid
(
&
tattr
->
guid
),
debugstr_guid
(
&
tattr
->
guid
),
tattr
->
wTypeFlags
);
tattr
->
wTypeFlags
);
if
(
tattr
->
wTypeFlags
&
TYPEFLAG_FOLEAUTOMATION
)
{
if
(
TRACE_ON
(
typelib
))
{
#define XX(x) if (TYPEFLAG_##x & tattr->wTypeFlags) MESSAGE(#x"|");
XX
(
FAPPOBJECT
);
XX
(
FCANCREATE
);
XX
(
FLICENSED
);
XX
(
FPREDECLID
);
XX
(
FHIDDEN
);
XX
(
FCONTROL
);
XX
(
FDUAL
);
XX
(
FNONEXTENSIBLE
);
XX
(
FOLEAUTOMATION
);
XX
(
FRESTRICTED
);
XX
(
FAGGREGATABLE
);
XX
(
FREPLACEABLE
);
XX
(
FDISPATCHABLE
);
XX
(
FREVERSEBIND
);
XX
(
FPROXY
);
#undef XX
MESSAGE
(
"
\n
"
);
}
/*
* FIXME: The 1 is just here until we implement rpcrt4
* stub/proxy handling. Until then it helps IShield
* v6 to work.
*/
if
(
1
||
(
tattr
->
wTypeFlags
&
TYPEFLAG_FOLEAUTOMATION
))
{
/* register interface<->typelib coupling */
/* register interface<->typelib coupling */
StringFromGUID2
(
&
tattr
->
guid
,
guid
,
80
);
StringFromGUID2
(
&
tattr
->
guid
,
guid
,
80
);
guidA
=
HEAP_strdupWtoA
(
GetProcessHeap
(),
0
,
guid
);
guidA
=
HEAP_strdupWtoA
(
GetProcessHeap
(),
0
,
guid
);
...
...
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