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
132ba27f
Commit
132ba27f
authored
Jan 20, 2010
by
Christian Costa
Committed by
Alexandre Julliard
Jan 20, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdi32: Improve some FIXMEs.
parent
3b20cb11
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
freetype.c
dlls/gdi32/freetype.c
+5
-5
No files found.
dlls/gdi32/freetype.c
View file @
132ba27f
...
...
@@ -2171,7 +2171,7 @@ HANDLE WineEngAddFontMemResourceEx(PVOID pbFont, DWORD cbFont, PVOID pdv, DWORD
BOOL
WineEngRemoveFontResourceEx
(
LPCWSTR
file
,
DWORD
flags
,
PVOID
pdv
)
{
GDI_CheckNotLock
();
FIXME
(
"
:stub
\n
"
);
FIXME
(
"
(%s, %x, %p): stub
\n
"
,
debugstr_w
(
file
),
flags
,
pdv
);
return
TRUE
;
}
...
...
@@ -6679,25 +6679,25 @@ INT WineEngGetTextFace(GdiFont *font, INT count, LPWSTR str)
INT
WineEngAddFontResourceEx
(
LPCWSTR
file
,
DWORD
flags
,
PVOID
pdv
)
{
FIXME
(
"
:stub
\n
"
);
FIXME
(
"
(%s, %x, %p): stub
\n
"
,
debugstr_w
(
file
),
flags
,
pdv
);
return
1
;
}
INT
WineEngRemoveFontResourceEx
(
LPCWSTR
file
,
DWORD
flags
,
PVOID
pdv
)
{
FIXME
(
"
:stub
\n
"
);
FIXME
(
"
(%s, %x, %p): stub
\n
"
,
debugstr_w
(
file
),
flags
,
pdv
);
return
TRUE
;
}
HANDLE
WineEngAddFontMemResourceEx
(
PVOID
pbFont
,
DWORD
cbFont
,
PVOID
pdv
,
DWORD
*
pcFonts
)
{
FIXME
(
"
:stub
\n
"
);
FIXME
(
"
(%p, %u, %p, %p): stub
\n
"
,
pbFont
,
cbFont
,
pdv
,
pcFonts
);
return
NULL
;
}
UINT
WineEngGetTextCharsetInfo
(
GdiFont
*
font
,
LPFONTSIGNATURE
fs
,
DWORD
flags
)
{
FIXME
(
"
:stub
\n
"
);
FIXME
(
"
(%p, %p, %u): stub
\n
"
,
font
,
fs
,
flags
);
return
DEFAULT_CHARSET
;
}
...
...
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