Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
3c2bda8f
Commit
3c2bda8f
authored
Oct 27, 2005
by
Robert Shearman
Committed by
Alexandre Julliard
Oct 27, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add IFontEventsDisp and IProvideMultipleClassInfo.
parent
05905cc5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
52 additions
and
9 deletions
+52
-9
regsvr.c
dlls/oleaut32/regsvr.c
+0
-9
ocidl.idl
include/ocidl.idl
+52
-0
No files found.
dlls/oleaut32/regsvr.c
View file @
3c2bda8f
...
...
@@ -544,15 +544,6 @@ static struct regsvr_coclass const coclass_list[] = {
/***********************************************************************
* interface list
*/
/* FIXME: these interfaces should be defined in ocidl.idl */
static
IID
const
IID_IFontEventsDisp
=
{
0x4EF6100A
,
0xAF88
,
0x11D0
,
{
0x98
,
0x46
,
0x00
,
0xC0
,
0x4F
,
0xC2
,
0x99
,
0x93
}
};
static
IID
const
IID_IProvideMultipleClassInfo
=
{
0xA7ABA9C1
,
0x8983
,
0x11CF
,
{
0x8F
,
0x20
,
0x00
,
0x80
,
0x5F
,
0x2C
,
0xD0
,
0x64
}
};
static
struct
regsvr_interface
const
interface_list
[]
=
{
{
&
IID_IDispatch
,
"IDispatch"
,
...
...
include/ocidl.idl
View file @
3c2bda8f
...
...
@@ -32,6 +32,14 @@ import "urlmon.idl";
]
interface
IOleControlTypes
{
typedef
[
v1_enum
]
enum
tagUASFLAGS
{
UAS_NORMAL
=
0
x0
,
UAS_BLOCKED
=
0
x1
,
UAS_NOPARENTABLE
=
0
x2
,
UAS_MASK
=
0
x3
}
UASFLAGS
;
typedef
enum
tagREADYSTATE
{
READYSTATE_UNINITIALIZED
=
0
,
...
...
@@ -110,6 +118,20 @@ interface IFontDisp : IDispatch
/*****************************************************************************
*
IFontEventsDisp
interface
*/
[
object
,
uuid
(
4
ef6100a
-
af88
-
11
d0
-
9846
-
00
c04fc29993
),
pointer_default
(
unique
)
]
interface
IFontEventsDisp
:
IDispatch
{
typedef
IFontEventsDisp
*
LPFONTEVENTS
;
}
/*****************************************************************************
*
IPicture
interface
*/
[
...
...
@@ -545,6 +567,36 @@ interface IProvideClassInfo2 : IProvideClassInfo
}
[
object
,
uuid
(
a7aba9c1
-
8983
-
11
cf
-
8
f20
-
00805
f2cd064
),
pointer_default
(
unique
)
]
interface
IProvideMultipleClassInfo
:
IProvideClassInfo2
{
cpp_quote
(
"#define MULTICLASSINFO_GETTYPEINFO 0x00000001"
)
cpp_quote
(
"#define MULTICLASSINFO_GETNUMRESERVEDDISPIDS 0x00000002"
)
cpp_quote
(
"#define MULTICLASSINFO_GETIIDPRIMARY 0x00000004"
)
cpp_quote
(
"#define MULTICLASSINFO_GETIIDSOURCE 0x00000008"
)
cpp_quote
(
"#define TIFLAGS_EXTENDDISPATCHONLY 0x00000001"
)
typedef
IProvideMultipleClassInfo
*
LPPROVIDEMULTIPLECLASSINFO
;
HRESULT
GetMultiTypeInfoCount
(
[
out
]
ULONG
*
pcti
)
;
HRESULT
GetInfoOfIndex
(
[
in
]
ULONG
iti
,
[
in
]
DWORD
dwFlags
,
[
out
]
ITypeInfo
**
pptiCoClass
,
[
out
]
DWORD
*
pdwTIFlags
,
[
out
]
ULONG
*
pcdispidReserved
,
[
out
]
IID
*
piidPrimary
,
[
out
]
IID
*
piidSource
)
;
}
/*****************************************************************************
*
IConnectionPoint
interface
*/
...
...
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