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
5bb957fa
Commit
5bb957fa
authored
Feb 01, 2022
by
Nikolay Sivov
Committed by
Alexandre Julliard
Feb 02, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
t2embed: Fix long types warnings.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
bdb7bb10
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
5 deletions
+4
-5
Makefile.in
dlls/t2embed/Makefile.in
+0
-1
main.c
dlls/t2embed/main.c
+4
-4
No files found.
dlls/t2embed/Makefile.in
View file @
5bb957fa
EXTRADEFS
=
-DWINE_NO_LONG_TYPES
MODULE
=
t2embed.dll
IMPORTLIB
=
t2embed
IMPORTS
=
gdi32 advapi32
...
...
dlls/t2embed/main.c
View file @
5bb957fa
...
...
@@ -34,7 +34,7 @@ LONG WINAPI TTLoadEmbeddedFont(HANDLE *phFontReference, ULONG ulFlags,
LPVOID
lpvReadStream
,
LPWSTR
szWinFamilyName
,
LPSTR
szMacFamilyName
,
TTLOADINFO
*
pTTLoadInfo
)
{
FIXME
(
"
(%p 0x%08x %p 0x%08x %p %p %p %s %s %p)
stub
\n
"
,
phFontReference
,
FIXME
(
"
%p, %#lx, %p, %lu, %p, %p, %p, %s, %s, %p
stub
\n
"
,
phFontReference
,
ulFlags
,
pulPrivStatus
,
ulPrivs
,
pulStatus
,
lpfnReadFromStream
,
lpvReadStream
,
debugstr_w
(
szWinFamilyName
),
szMacFamilyName
,
pTTLoadInfo
);
...
...
@@ -47,7 +47,7 @@ LONG WINAPI TTEmbedFont(HDC hDC, ULONG ulFlags, ULONG ulCharSet, ULONG *pulPrivS
USHORT
*
pusCharCodeSet
,
USHORT
usCharCodeCount
,
USHORT
usLanguage
,
TTEMBEDINFO
*
pTTEmbedInfo
)
{
FIXME
(
"
(%p 0x%08x 0x%08x %p %p %p %p %p %u %u %p)
stub
\n
"
,
hDC
,
FIXME
(
"
%p, %#lx, %lu, %p, %p, %p, %p, %p, %u, %u, %p
stub
\n
"
,
hDC
,
ulFlags
,
ulCharSet
,
pulPrivStatus
,
pulStatus
,
lpfnWriteToStream
,
lpvWriteStream
,
pusCharCodeSet
,
usCharCodeCount
,
usLanguage
,
pTTEmbedInfo
);
...
...
@@ -87,7 +87,7 @@ LONG WINAPI TTGetEmbeddingType(HDC hDC, ULONG *status)
*
status
=
EMBED_INSTALLABLE
;
}
TRACE
(
"fsType 0x%04x, status %u
\n
"
,
fsType
,
*
status
);
TRACE
(
"fsType 0x%04x, status %
l
u
\n
"
,
fsType
,
*
status
);
return
E_NONE
;
}
...
...
@@ -163,6 +163,6 @@ LONG WINAPI TTIsEmbeddingEnabled(HDC hDC, BOOL *enabled)
LONG
WINAPI
TTDeleteEmbeddedFont
(
HANDLE
hFontReference
,
ULONG
flags
,
ULONG
*
status
)
{
FIXME
(
"
(%p 0x%08x %p)
stub
\n
"
,
hFontReference
,
flags
,
status
);
FIXME
(
"
%p, %#lx, %p
stub
\n
"
,
hFontReference
,
flags
,
status
);
return
E_API_NOTIMPL
;
}
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