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
b135d4a7
Commit
b135d4a7
authored
Jul 09, 2008
by
Adam Petaccia
Committed by
Alexandre Julliard
Jul 10, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Stub GdipSetStringFormatMeasurableCharacterRanges.
parent
ae443728
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
20 additions
and
1 deletion
+20
-1
gdiplus.spec
dlls/gdiplus/gdiplus.spec
+1
-1
stringformat.c
dlls/gdiplus/stringformat.c
+11
-0
gdiplusflat.h
include/gdiplusflat.h
+2
-0
gdiplustypes.h
include/gdiplustypes.h
+6
-0
No files found.
dlls/gdiplus/gdiplus.spec
View file @
b135d4a7
...
...
@@ -590,7 +590,7 @@
@ stdcall GdipSetStringFormatFlags(ptr long)
@ stdcall GdipSetStringFormatHotkeyPrefix(ptr long)
@ stdcall GdipSetStringFormatLineAlign(ptr long)
@ st
ub GdipSetStringFormatMeasurableCharacterRanges
@ st
dcall GdipSetStringFormatMeasurableCharacterRanges(ptr long ptr)
@ stub GdipSetStringFormatTabStops
@ stdcall GdipSetStringFormatTrimming(ptr long)
@ stub GdipSetTextContrast
...
...
dlls/gdiplus/stringformat.c
View file @
b135d4a7
...
...
@@ -167,6 +167,17 @@ GpStatus WINGDIPAPI GdipSetStringFormatLineAlign(GpStringFormat *format,
return
Ok
;
}
GpStatus
WINGDIPAPI
GdipSetStringFormatMeasurableCharacterRanges
(
GpStringFormat
*
format
,
INT
rangeCount
,
GDIPCONST
CharacterRange
*
ranges
)
{
if
(
!
(
format
&&
rangeCount
&&
ranges
))
return
InvalidParameter
;
FIXME
(
"stub: %p, %d, %p
\n
"
,
format
,
rangeCount
,
ranges
);
return
NotImplemented
;
}
GpStatus
WINGDIPAPI
GdipSetStringFormatTrimming
(
GpStringFormat
*
format
,
StringTrimming
trimming
)
{
...
...
include/gdiplusflat.h
View file @
b135d4a7
...
...
@@ -414,6 +414,8 @@ GpStatus WINGDIPAPI GdipGetStringFormatTrimming(GpStringFormat*,StringTrimming*)
GpStatus
WINGDIPAPI
GdipSetStringFormatAlign
(
GpStringFormat
*
,
StringAlignment
);
GpStatus
WINGDIPAPI
GdipSetStringFormatHotkeyPrefix
(
GpStringFormat
*
,
INT
);
GpStatus
WINGDIPAPI
GdipSetStringFormatLineAlign
(
GpStringFormat
*
,
StringAlignment
);
GpStatus
WINGDIPAPI
GdipSetStringFormatMeasurableCharacterRanges
(
GpStringFormat
*
,
INT
,
GDIPCONST
CharacterRange
*
);
GpStatus
WINGDIPAPI
GdipSetStringFormatTrimming
(
GpStringFormat
*
,
StringTrimming
);
GpStatus
WINGDIPAPI
GdipCloneStringFormat
(
GDIPCONST
GpStringFormat
*
,
GpStringFormat
**
);
...
...
include/gdiplustypes.h
View file @
b135d4a7
...
...
@@ -236,6 +236,12 @@ typedef struct Rect
INT
Height
;
}
Rect
;
typedef
struct
CharacterRange
{
INT
First
;
INT
Length
;
}
CharacterRange
;
typedef
enum
Status
Status
;
#endif
/* end of c typedefs */
...
...
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