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
4091704b
Commit
4091704b
authored
Sep 21, 2017
by
Henri Verbeet
Committed by
Alexandre Julliard
Sep 22, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Convert dcommon.h to IDL.
Signed-off-by:
Henri Verbeet
<
hverbeet@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
3a5c3394
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
10 deletions
+13
-10
Makefile.in
include/Makefile.in
+1
-1
d2d1.idl
include/d2d1.idl
+1
-1
dcommon.idl
include/dcommon.idl
+10
-7
dwrite.idl
include/dwrite.idl
+1
-1
No files found.
include/Makefile.in
View file @
4091704b
...
...
@@ -53,6 +53,7 @@ IDL_SRCS = \
dbinit.idl
\
dbprop.idl
\
dbs.idl
\
dcommon.idl
\
ddstream.idl
\
devenum.idl
\
devicetopology.idl
\
...
...
@@ -294,7 +295,6 @@ HEADER_SRCS = \
dbt.h
\
dciddi.h
\
dciman.h
\
dcommon.h
\
dde.h
\
dde.rh
\
ddeml.h
\
...
...
include/d2d1.idl
View file @
4091704b
...
...
@@ -17,7 +17,7 @@
*/
import
"unknwn.idl"
;
import
"dcommon.
h
"
;
import
"dcommon.
idl
"
;
import
"d2dbasetypes.h"
;
import
"d3d10_1.idl"
;
import
"d2derr.h"
;
...
...
include/dcommon.
h
→
include/dcommon.
idl
View file @
4091704b
...
...
@@ -16,10 +16,15 @@
*
Foundation
,
Inc
.
,
51
Franklin
St
,
Fifth
Floor
,
Boston
,
MA
02110
-
1301
,
USA
*/
#ifndef __WINE_DCOMMON_H
#define __WINE_DCOMMON_H
import
"dxgiformat.h"
;
#include "dxgiformat.h"
cpp_quote
(
"#if 0"
)
typedef
struct
{
long
x
,
y
;
}
POINT
;
typedef
unsigned
int
UINT32
;
cpp_quote
(
"#endif"
)
typedef
enum
DWRITE_MEASURING_MODE
{
...
...
@@ -45,8 +50,8 @@ typedef struct D2D1_PIXEL_FORMAT
typedef
struct
D2D_POINT_2F
{
FLOAT
x
;
FLOAT
y
;
float
x
;
float
y
;
}
D2D_POINT_2F
,
D2D1_POINT_2F
;
typedef
POINT
D2D_POINT_2L
,
D2D1_POINT_2L
;
...
...
@@ -56,5 +61,3 @@ typedef struct D2D_SIZE_U
UINT32
width
;
UINT32
height
;
}
D2D_SIZE_U
,
D2D1_SIZE_U
;
#endif
/* __WINE_DCOMMON_H */
include/dwrite.idl
View file @
4091704b
...
...
@@ -17,7 +17,7 @@
*/
import
"unknwn.idl"
;
import
"dcommon.
h
"
;
import
"dcommon.
idl
"
;
interface
IDWriteFactory
;
interface
IDWriteFontCollection
;
...
...
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