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
8127fd95
Commit
8127fd95
authored
Oct 10, 2014
by
Francois Gouget
Committed by
Alexandre Julliard
Oct 13, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dwrite: Avoid redefining the DWRITE_GLYPH_RUN typedef.
parent
25d7a1bb
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
+9
-2
d2d1.idl
include/d2d1.idl
+3
-0
dwrite.idl
include/dwrite.idl
+6
-2
No files found.
include/d2d1.idl
View file @
8127fd95
...
...
@@ -37,7 +37,10 @@ interface IDWriteTextLayout;
interface
IWICBitmapSource
;
interface
IWICBitmap
;
cpp_quote
(
"#ifndef __dwrite_h__"
)
/*
already
defined
in
dwrite
.
h
but
needed
for
WIDL
*/
typedef
struct
DWRITE_GLYPH_RUN
DWRITE_GLYPH_RUN
;
cpp_quote
(
"#endif /* __dwrite_h__ */"
)
typedef
D2D_POINT_2F
D2D1_POINT_2F
;
typedef
D2D_MATRIX_3X2_F
D2D1_MATRIX_3X2_F
;
...
...
include/dwrite.idl
View file @
8127fd95
...
...
@@ -382,7 +382,11 @@ typedef struct DWRITE_TRIMMING
UINT32
delimiterCount
;
}
DWRITE_TRIMMING
;
typedef
struct
DWRITE_GLYPH_RUN
cpp_quote
(
"#ifndef __d2d1_h__"
)
typedef
struct
DWRITE_GLYPH_RUN
DWRITE_GLYPH_RUN
;
cpp_quote
(
"#endif /* __d2d1_h__ */"
)
struct
DWRITE_GLYPH_RUN
{
IDWriteFontFace
*
fontFace
;
FLOAT
fontEmSize
;
...
...
@@ -392,7 +396,7 @@ typedef struct DWRITE_GLYPH_RUN
DWRITE_GLYPH_OFFSET
const
*
glyphOffsets
;
BOOL
isSideways
;
UINT32
bidiLevel
;
}
DWRITE_GLYPH_RUN
;
}
;
typedef
struct
DWRITE_GLYPH_RUN_DESCRIPTION
{
...
...
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