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
45c3d74c
Commit
45c3d74c
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 GdipGetLineSpacing.
parent
638f63d1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
1 deletion
+26
-1
font.c
dlls/gdiplus/font.c
+24
-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 @
45c3d74c
...
@@ -491,6 +491,30 @@ GpStatus WINGDIPAPI GdipDeleteFontFamily(GpFontFamily *FontFamily)
...
@@ -491,6 +491,30 @@ GpStatus WINGDIPAPI GdipDeleteFontFamily(GpFontFamily *FontFamily)
return
Ok
;
return
Ok
;
}
}
/*******************************************************************************
* GdipGetLineSpacing [GDIPLUS.@]
*
* Returns the line spacing in design units
*
* PARAMS
* family [I] Family to retrieve from
* style [I] (Optional) font style
* LineSpacing [O] Return value
*
* RETURNS
* SUCCESS: Ok
* FAILURE: InvalidParameter (family or LineSpacing was NULL)
*/
GpStatus
WINGDIPAPI
GdipGetLineSpacing
(
GDIPCONST
GpFontFamily
*
family
,
INT
style
,
UINT16
*
LineSpacing
)
{
if
(
!
(
family
&&
LineSpacing
))
return
InvalidParameter
;
FIXME
(
"stub!
\n
"
);
return
NotImplemented
;
}
/*****************************************************************************
/*****************************************************************************
* GdipGetGenericFontFamilyMonospace [GDIPLUS.@]
* GdipGetGenericFontFamilyMonospace [GDIPLUS.@]
*
*
...
...
dlls/gdiplus/gdiplus.spec
View file @
45c3d74c
...
@@ -308,7 +308,7 @@
...
@@ -308,7 +308,7 @@
@ stub GdipGetLinePresetBlendCount
@ stub GdipGetLinePresetBlendCount
@ stdcall GdipGetLineRect(ptr ptr)
@ stdcall GdipGetLineRect(ptr ptr)
@ stdcall GdipGetLineRectI(ptr ptr)
@ stdcall GdipGetLineRectI(ptr ptr)
@ st
ub GdipGetLineSpacing
@ st
dcall GdipGetLineSpacing(ptr long ptr)
@ stub GdipGetLineTransform
@ stub GdipGetLineTransform
@ stub GdipGetLineWrapMode
@ stub GdipGetLineWrapMode
@ stub GdipGetLogFontA
@ stub GdipGetLogFontA
...
...
include/gdiplusflat.h
View file @
45c3d74c
...
@@ -378,6 +378,7 @@ GpStatus WINGDIPAPI GdipCreateFontFamilyFromName(GDIPCONST WCHAR*,
...
@@ -378,6 +378,7 @@ GpStatus WINGDIPAPI GdipCreateFontFamilyFromName(GDIPCONST WCHAR*,
GpStatus
WINGDIPAPI
GdipCloneFontFamily
(
GpFontFamily
*
,
GpFontFamily
**
);
GpStatus
WINGDIPAPI
GdipCloneFontFamily
(
GpFontFamily
*
,
GpFontFamily
**
);
GpStatus
WINGDIPAPI
GdipDeleteFontFamily
(
GpFontFamily
*
);
GpStatus
WINGDIPAPI
GdipDeleteFontFamily
(
GpFontFamily
*
);
GpStatus
WINGDIPAPI
GdipGetFamilyName
(
GDIPCONST
GpFontFamily
*
,
WCHAR
*
,
LANGID
);
GpStatus
WINGDIPAPI
GdipGetFamilyName
(
GDIPCONST
GpFontFamily
*
,
WCHAR
*
,
LANGID
);
GpStatus
WINGDIPAPI
GdipGetLineSpacing
(
GDIPCONST
GpFontFamily
*
,
INT
,
UINT16
*
);
GpStatus
WINGDIPAPI
GdipGetGenericFontFamilySansSerif
(
GpFontFamily
**
);
GpStatus
WINGDIPAPI
GdipGetGenericFontFamilySansSerif
(
GpFontFamily
**
);
GpStatus
WINGDIPAPI
GdipGetGenericFontFamilySerif
(
GpFontFamily
**
);
GpStatus
WINGDIPAPI
GdipGetGenericFontFamilySerif
(
GpFontFamily
**
);
...
...
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