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
1eb7cca1
Commit
1eb7cca1
authored
Feb 24, 2014
by
Nikolay Sivov
Committed by
Alexandre Julliard
Feb 24, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Use existing DISPID values instead of magic numbers.
parent
6824cae6
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
15 deletions
+18
-15
stdole2.idl
include/stdole2.idl
+18
-15
No files found.
include/stdole2.idl
View file @
1eb7cca1
...
@@ -20,6 +20,8 @@
...
@@ -20,6 +20,8 @@
#
pragma
makedep
typelib
#
pragma
makedep
typelib
#
include
<
olectl
.
h>
[
[
uuid
(
00020430
-
0000
-
0000
-
C000
-
000000000046
),
uuid
(
00020430
-
0000
-
0000
-
C000
-
000000000046
),
version
(
2.0
),
version
(
2.0
),
...
@@ -272,14 +274,14 @@ library stdole
...
@@ -272,14 +274,14 @@ library stdole
]
]
dispinterface
Font
{
dispinterface
Font
{
properties
:
properties
:
[
id
(
0
x0
)
]
BSTR
Name
;
[
id
(
DISPID_FONT_NAME
)
]
BSTR
Name
;
[
id
(
0
x2
)
]
CURRENCY
Size
;
[
id
(
DISPID_FONT_SIZE
)
]
CURRENCY
Size
;
[
id
(
0
x3
)
]
VARIANT_BOOL
Bold
;
[
id
(
DISPID_FONT_BOLD
)
]
VARIANT_BOOL
Bold
;
[
id
(
0
x4
)
]
VARIANT_BOOL
Italic
;
[
id
(
DISPID_FONT_ITALIC
)
]
VARIANT_BOOL
Italic
;
[
id
(
0
x5
)
]
VARIANT_BOOL
Underline
;
[
id
(
DISPID_FONT_UNDER
)
]
VARIANT_BOOL
Underline
;
[
id
(
0
x6
)
]
VARIANT_BOOL
Strikethrough
;
[
id
(
DISPID_FONT_STRIKE
)
]
VARIANT_BOOL
Strikethrough
;
[
id
(
0
x7
)
]
short
Weight
;
[
id
(
DISPID_FONT_WEIGHT
)
]
short
Weight
;
[
id
(
0
x8
)
]
short
Charset
;
[
id
(
DISPID_FONT_CHARSET
)
]
short
Charset
;
methods
:
methods
:
}
}
...
@@ -351,13 +353,14 @@ library stdole
...
@@ -351,13 +353,14 @@ library stdole
]
]
dispinterface Picture {
dispinterface Picture {
properties:
properties:
[id(
0x0
), readonly] OLE_HANDLE Handle;
[id(
DISPID_PICT_HANDLE
), readonly] OLE_HANDLE Handle;
[id(
0x2
)] OLE_HANDLE hPal;
[id(
DISPID_PICT_HPAL
)] OLE_HANDLE hPal;
[id(
0x3), readonly] short Type;
[id(
DISPID_PICT_TYPE), readonly] short Type;
[id(
0x4
), readonly] OLE_XSIZE_HIMETRIC Width;
[id(
DISPID_PICT_WIDTH
), readonly] OLE_XSIZE_HIMETRIC Width;
[id(
0x5
), readonly] OLE_YSIZE_HIMETRIC Height;
[id(
DISPID_PICT_HEIGHT
), readonly] OLE_YSIZE_HIMETRIC Height;
methods:
methods:
[id(0x6)] void Render(int hdc,
[id(DISPID_PICT_RENDER)]
void Render(int hdc,
long x,
long x,
long y,
long y,
long cx,
long cx,
...
@@ -424,7 +427,7 @@ library stdole
...
@@ -424,7 +427,7 @@ library stdole
dispinterface FontEvents {
dispinterface FontEvents {
properties:
properties:
methods:
methods:
[id(
0x9
)] void FontChanged([in] BSTR PropertyName);
[id(
DISPID_FONT_CHANGED
)] void FontChanged([in] BSTR PropertyName);
};
};
typedef [public] FontEvents IFontEventsDisp;
typedef [public] FontEvents IFontEventsDisp;
...
...
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