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
aef85c72
Commit
aef85c72
authored
Feb 01, 2011
by
Iain Arnell
Committed by
Alexandre Julliard
Feb 01, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: C++ fixes for headers.
parent
8a38fbca
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
28 additions
and
1 deletion
+28
-1
gdiplusenums.h
include/gdiplusenums.h
+1
-1
gdiplusgpstubs.h
include/gdiplusgpstubs.h
+2
-0
gdiplustypes.h
include/gdiplustypes.h
+25
-0
No files found.
include/gdiplusenums.h
View file @
aef85c72
...
...
@@ -734,7 +734,7 @@ typedef enum StringTrimming StringTrimming;
typedef
enum
FontStyle
FontStyle
;
typedef
enum
StringFormatFlags
StringFormatFlags
;
typedef
enum
HotkeyPrefix
HotkeyPrefix
;
typedef
enum
PenAlignment
Gp
PenAlignment
;
typedef
enum
PenAlignment
PenAlignment
;
typedef
enum
PaletteFlags
PaletteFlags
;
typedef
enum
ImageCodecFlags
ImageCodecFlags
;
typedef
enum
CombineMode
CombineMode
;
...
...
include/gdiplusgpstubs.h
View file @
aef85c72
...
...
@@ -22,6 +22,7 @@
#ifdef __cplusplus
class
GpGraphics
{};
class
GpPen
{};
class
GpBrush
{};
class
GpHatch
:
public
GpBrush
{};
class
GpSolidFill
:
public
GpBrush
{};
...
...
@@ -92,6 +93,7 @@ typedef WrapMode GpWrapMode;
typedef
Color
GpColor
;
typedef
FlushIntention
GpFlushIntention
;
typedef
CoordinateSpace
GpCoordinateSpace
;
typedef
PenAlignment
GpPenAlignment
;
typedef
PenType
GpPenType
;
#endif
include/gdiplustypes.h
View file @
aef85c72
...
...
@@ -199,6 +199,31 @@ public:
INT
Height
;
};
class
CharacterRange
{
public
:
CharacterRange
()
{
First
=
Length
=
0
;
}
CharacterRange
(
INT
first
,
INT
length
)
{
First
=
first
;
Length
=
length
;
}
CharacterRange
&
operator
=
(
const
CharacterRange
&
rhs
)
{
First
=
rhs
.
First
;
Length
=
rhs
.
Length
;
return
*
this
;
}
public
:
INT
First
;
INT
Length
;
};
#else
/* end of c++ typedefs */
typedef
struct
Point
...
...
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