Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
15831e0a
Commit
15831e0a
authored
Jul 03, 2008
by
Adam Petaccia
Committed by
Alexandre Julliard
Jul 07, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Stub GdipGetCellAscent.
parent
33cb831f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
1 deletion
+11
-1
font.c
dlls/gdiplus/font.c
+9
-0
gdiplus.spec
dlls/gdiplus/gdiplus.spec
+1
-1
gdiplusflat.h
include/gdiplusflat.h
+1
-0
No files found.
dlls/gdiplus/font.c
View file @
15831e0a
...
...
@@ -491,6 +491,15 @@ GpStatus WINGDIPAPI GdipDeleteFontFamily(GpFontFamily *FontFamily)
return
Ok
;
}
GpStatus
WINGDIPAPI
GdipGetCellAscent
(
GDIPCONST
GpFontFamily
*
family
,
INT
style
,
UINT16
*
CellAscent
)
{
if
(
!
(
family
&&
CellAscent
))
return
InvalidParameter
;
FIXME
(
"stub!
\n
"
);
return
NotImplemented
;
}
/*******************************************************************************
* GdipGetEmHeight [GDIPLUS.@]
*
...
...
dlls/gdiplus/gdiplus.spec
View file @
15831e0a
...
...
@@ -242,7 +242,7 @@
@ stub GdipGetAdjustableArrowCapWidth
@ stub GdipGetAllPropertyItems
@ stdcall GdipGetBrushType(ptr ptr)
@ st
ub GdipGetCellAscent
@ st
dcall GdipGetCellAscent(ptr long ptr)
@ stub GdipGetCellDescent
@ stdcall GdipGetClip(ptr ptr)
@ stub GdipGetClipBounds
...
...
include/gdiplusflat.h
View file @
15831e0a
...
...
@@ -378,6 +378,7 @@ GpStatus WINGDIPAPI GdipCreateFontFamilyFromName(GDIPCONST WCHAR*,
GpStatus
WINGDIPAPI
GdipCloneFontFamily
(
GpFontFamily
*
,
GpFontFamily
**
);
GpStatus
WINGDIPAPI
GdipDeleteFontFamily
(
GpFontFamily
*
);
GpStatus
WINGDIPAPI
GdipGetFamilyName
(
GDIPCONST
GpFontFamily
*
,
WCHAR
*
,
LANGID
);
GpStatus
WINGDIPAPI
GdipGetCellAscent
(
GDIPCONST
GpFontFamily
*
,
INT
,
UINT16
*
);
GpStatus
WINGDIPAPI
GdipGetEmHeight
(
GDIPCONST
GpFontFamily
*
,
INT
,
UINT16
*
);
GpStatus
WINGDIPAPI
GdipGetLineSpacing
(
GDIPCONST
GpFontFamily
*
,
INT
,
UINT16
*
);
...
...
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