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
169f8a53
Commit
169f8a53
authored
Feb 17, 2016
by
Nikolay Sivov
Committed by
Alexandre Julliard
Feb 17, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Some more definitions for dwrite_3.idl.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
3bac3800
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
40 additions
and
1 deletion
+40
-1
dwrite_3.idl
include/dwrite_3.idl
+40
-1
No files found.
include/dwrite_3.idl
View file @
169f8a53
...
...
@@ -20,8 +20,8 @@ import "dwrite_2.idl";
interface
IDWriteFontFaceReference
;
interface
IDWriteFontFace3
;
interface
IDWriteFont3
;
interface
IDWriteFontSet
;
interface
IDWriteFontDownloadQueue
;
typedef
enum
DWRITE_LOCALITY
{
...
...
@@ -45,6 +45,31 @@ typedef enum DWRITE_RENDERING_MODE1
[
local
,
object
,
uuid
(
b06fe5b9
-
43
ec
-
4393
-
881b
-
dbe4dc72fda7
)
]
interface
IDWriteFontDownloadListener
:
IUnknown
{
void
DownloadCompleted
(
IDWriteFontDownloadQueue
*
queue
,
IUnknown
*
context
,
HRESULT
result
)
;
}
[
local
,
object
,
uuid
(
b71e6052
-
5
aea
-
4
fa3
-
832
e
-
f60d431f7e91
)
]
interface
IDWriteFontDownloadQueue
:
IUnknown
{
HRESULT
AddListener
(
IDWriteFontDownloadListener
*
listener
,
UINT32
*
token
)
;
HRESULT
RemoveListener
(
UINT32
token
)
;
BOOL
IsEmpty
()
;
HRESULT
BeginDownload
(
IUnknown
*
context
)
;
HRESULT
CancelDownload
()
;
UINT64
GetGenerationCount
()
;
}
[
local
,
object
,
uuid
(
b7924baa
-
391b
-
412
a
-
8
c5c
-
e44cc2d867dc
)
]
interface
IDWriteRenderingParams3
:
IDWriteRenderingParams2
...
...
@@ -55,6 +80,20 @@ interface IDWriteRenderingParams3 : IDWriteRenderingParams2
[
local
,
object
,
uuid
(
29748
ed6
-
8
c9c
-
4
a6a
-
be0b
-
d912e8538944
)
]
interface
IDWriteFont3
:
IDWriteFont2
{
HRESULT
CreateFontFace
(
IDWriteFontFace3
**
fontface
)
;
BOOL
Equals
(
IDWriteFont
*
font
)
;
HRESULT
GetFontFaceReference
(
IDWriteFontFaceReference
**
reference
)
;
BOOL
HasCharacter
(
UINT32
character
)
;
DWRITE_LOCALITY
GetLocality
()
;
}
[
local
,
object
,
uuid
(
da20d8ef
-
812
a
-
4
c43
-
9802
-
62
ec4abd7adf
)
]
interface
IDWriteFontFamily1
:
IDWriteFontFamily
...
...
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