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
f29a1315
Commit
f29a1315
authored
Jul 19, 2005
by
Robert Shearman
Committed by
Alexandre Julliard
Jul 19, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Activate ITypeLib, ITypeInfo and IEnumVARIANT Marshalers.
parent
0648ab61
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
9 deletions
+15
-9
oleaut.c
dlls/oleaut32/oleaut.c
+9
-3
regsvr.c
dlls/oleaut32/regsvr.c
+6
-6
No files found.
dlls/oleaut32/oleaut.c
View file @
f29a1315
...
@@ -42,8 +42,11 @@ WINE_DEFAULT_DEBUG_CHANNEL(ole);
...
@@ -42,8 +42,11 @@ WINE_DEFAULT_DEBUG_CHANNEL(ole);
/* The OLE Automation ProxyStub Interface Class (aka Typelib Marshaler) */
/* The OLE Automation ProxyStub Interface Class (aka Typelib Marshaler) */
extern
const
GUID
CLSID_PSOAInterface
;
extern
const
GUID
CLSID_PSOAInterface
;
/* IDispatch marshaler */
extern
const
GUID
CLSID_PSDispatch
;
extern
const
GUID
CLSID_PSDispatch
;
extern
const
GUID
CLSID_PSEnumVariant
;
extern
const
GUID
CLSID_PSTypeInfo
;
extern
const
GUID
CLSID_PSTypeLib
;
extern
const
GUID
CLSID_PSTypeComp
;
static
BOOL
BSTR_bCache
=
TRUE
;
/* Cache allocations to minimise alloc calls? */
static
BOOL
BSTR_bCache
=
TRUE
;
/* Cache allocations to minimise alloc calls? */
...
@@ -717,8 +720,11 @@ HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID iid, LPVOID *ppv)
...
@@ -717,8 +720,11 @@ HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID iid, LPVOID *ppv)
return
S_OK
;
return
S_OK
;
}
}
}
}
if
(
IsEqualGUID
(
rclsid
,
&
CLSID_PSDispatch
))
{
if
(
IsEqualCLSID
(
rclsid
,
&
CLSID_PSDispatch
)
||
return
OLEAUTPS_DllGetClassObject
(
rclsid
,
iid
,
ppv
);
IsEqualCLSID
(
rclsid
,
&
CLSID_PSTypeInfo
)
||
IsEqualCLSID
(
rclsid
,
&
CLSID_PSTypeLib
)
||
IsEqualCLSID
(
rclsid
,
&
CLSID_PSEnumVariant
))
{
return
OLEAUTPS_DllGetClassObject
(
&
CLSID_PSDispatch
,
iid
,
ppv
);
}
}
if
(
IsEqualGUID
(
rclsid
,
&
CLSID_PSOAInterface
))
{
if
(
IsEqualGUID
(
rclsid
,
&
CLSID_PSOAInterface
))
{
if
(
S_OK
==
TypeLibFac_DllGetClassObject
(
rclsid
,
iid
,
ppv
))
if
(
S_OK
==
TypeLibFac_DllGetClassObject
(
rclsid
,
iid
,
ppv
))
...
...
dlls/oleaut32/regsvr.c
View file @
f29a1315
...
@@ -445,20 +445,20 @@ static GUID const CLSID_RecordInfo = {
...
@@ -445,20 +445,20 @@ static GUID const CLSID_RecordInfo = {
extern
GUID
const
CLSID_PSDispatch
;
extern
GUID
const
CLSID_PSDispatch
;
static
GUID
const
CLSID_PSEnumVariant
=
{
GUID
const
CLSID_PSEnumVariant
=
{
0x00020421
,
0x0000
,
0x0000
,
{
0xC0
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x46
}
};
0x00020421
,
0x0000
,
0x0000
,
{
0xC0
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x46
}
};
static
GUID
const
CLSID_PSTypeInfo
=
{
GUID
const
CLSID_PSTypeInfo
=
{
0x00020422
,
0x0000
,
0x0000
,
{
0xC0
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x46
}
};
0x00020422
,
0x0000
,
0x0000
,
{
0xC0
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x46
}
};
static
GUID
const
CLSID_PSTypeLib
=
{
GUID
const
CLSID_PSTypeLib
=
{
0x00020423
,
0x0000
,
0x0000
,
{
0xC0
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x46
}
};
0x00020423
,
0x0000
,
0x0000
,
{
0xC0
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x46
}
};
extern
GUID
const
CLSID_PSOAInterface
;
GUID
const
CLSID_PSTypeComp
=
{
static
GUID
const
CLSID_PSTypeComp
=
{
0x00020425
,
0x0000
,
0x0000
,
{
0xC0
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x46
}
};
0x00020425
,
0x0000
,
0x0000
,
{
0xC0
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x46
}
};
extern
GUID
const
CLSID_PSOAInterface
;
static
GUID
const
CLSID_OldFont
=
{
static
GUID
const
CLSID_OldFont
=
{
0x46763EE0
,
0xCAB2
,
0x11CE
,
{
0x8C
,
0x20
,
0x00
,
0xAA
,
0x00
,
0x51
,
0xE5
,
0xD4
}
};
0x46763EE0
,
0xCAB2
,
0x11CE
,
{
0x8C
,
0x20
,
0x00
,
0xAA
,
0x00
,
0x51
,
0xE5
,
0xD4
}
};
...
...
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