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
b16b1220
Commit
b16b1220
authored
Mar 30, 2010
by
Nikolay Sivov
Committed by
Alexandre Julliard
Mar 31, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
t2embed: Add TTGetEmbeddingType stub.
parent
d82bd17d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
1 deletion
+16
-1
main.c
dlls/t2embed/main.c
+7
-0
t2embed.spec
dlls/t2embed/t2embed.spec
+1
-1
t2embapi.h
include/t2embapi.h
+8
-0
No files found.
dlls/t2embed/main.c
View file @
b16b1220
...
...
@@ -59,3 +59,10 @@ LONG WINAPI TTLoadEmbeddedFont(HANDLE *phFontReference, ULONG ulFlags,
return
E_API_NOTIMPL
;
}
LONG
WINAPI
TTGetEmbeddingType
(
HDC
hDC
,
ULONG
*
status
)
{
FIXME
(
"(%p %p) stub
\n
"
,
hDC
,
status
);
if
(
status
)
*
status
=
EMBED_NOEMBEDDING
;
return
E_API_NOTIMPL
;
}
dlls/t2embed/t2embed.spec
View file @
b16b1220
...
...
@@ -4,7 +4,7 @@
@ stub TTEmbedFontFromFileA
@ stub TTEnableEmbeddingForFacename
@ stub TTGetEmbeddedFontInfo
@ st
ub TTGetEmbeddingType
@ st
dcall TTGetEmbeddingType(ptr ptr)
@ stub TTIsEmbeddingEnabled
@ stub TTIsEmbeddingEnabledForFacename
@ stdcall TTLoadEmbeddedFont(ptr long ptr long ptr ptr ptr wstr str ptr)
...
...
include/t2embapi.h
View file @
b16b1220
...
...
@@ -39,6 +39,14 @@ typedef struct
LONG
WINAPI
TTLoadEmbeddedFont
(
HANDLE
*
,
ULONG
,
ULONG
*
,
ULONG
,
ULONG
*
,
READEMBEDPROC
,
LPVOID
,
LPWSTR
,
LPSTR
,
TTLOADINFO
*
);
/* embedding privileges */
#define EMBED_PREVIEWPRINT 1
#define EMBED_EDITABLE 2
#define EMBED_INSTALLABLE 3
#define EMBED_NOEMBEDDING 4
LONG
WINAPI
TTGetEmbeddingType
(
HDC
,
ULONG
*
);
#ifdef __cplusplus
}
#endif
...
...
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