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
b4a77bcd
Commit
b4a77bcd
authored
Jul 24, 2008
by
Adam Petaccia
Committed by
Alexandre Julliard
Jul 25, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Stub GdipIsStyleAvailable.
parent
430ce86a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
1 deletion
+13
-1
font.c
dlls/gdiplus/font.c
+11
-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 @
b4a77bcd
...
...
@@ -569,6 +569,17 @@ GpStatus WINGDIPAPI GdipGetLineSpacing(GDIPCONST GpFontFamily *family,
return
NotImplemented
;
}
GpStatus
WINGDIPAPI
GdipIsStyleAvailable
(
GDIPCONST
GpFontFamily
*
family
,
INT
style
,
BOOL
*
IsStyleAvailable
)
{
FIXME
(
"%p %d %p stub!
\n
"
,
family
,
style
,
IsStyleAvailable
);
if
(
!
(
family
&&
IsStyleAvailable
))
return
InvalidParameter
;
return
NotImplemented
;
}
/*****************************************************************************
* GdipGetGenericFontFamilyMonospace [GDIPLUS.@]
*
...
...
dlls/gdiplus/gdiplus.spec
View file @
b4a77bcd
...
...
@@ -423,7 +423,7 @@
@ stdcall GdipIsMatrixInvertible(ptr ptr)
@ stdcall GdipIsOutlineVisiblePathPoint(ptr long long ptr ptr ptr)
@ stdcall GdipIsOutlineVisiblePathPointI(ptr long long ptr ptr ptr)
@ st
ub GdipIsStyleAvailable
@ st
dcall GdipIsStyleAvailable(ptr long ptr)
@ stub GdipIsVisibleClipEmpty
@ stdcall GdipIsVisiblePathPoint(ptr long long ptr ptr)
@ stdcall GdipIsVisiblePathPointI(ptr long long ptr ptr)
...
...
include/gdiplusflat.h
View file @
b4a77bcd
...
...
@@ -415,6 +415,7 @@ GpStatus WINGDIPAPI GdipGetCellAscent(GDIPCONST GpFontFamily*, INT, UINT16*);
GpStatus
WINGDIPAPI
GdipGetCellDescent
(
GDIPCONST
GpFontFamily
*
,
INT
,
UINT16
*
);
GpStatus
WINGDIPAPI
GdipGetEmHeight
(
GDIPCONST
GpFontFamily
*
,
INT
,
UINT16
*
);
GpStatus
WINGDIPAPI
GdipGetLineSpacing
(
GDIPCONST
GpFontFamily
*
,
INT
,
UINT16
*
);
GpStatus
WINGDIPAPI
GdipIsStyleAvailable
(
GDIPCONST
GpFontFamily
*
,
INT
,
BOOL
*
);
GpStatus
WINGDIPAPI
GdipGetGenericFontFamilySansSerif
(
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