gdi32: Add sanity checks for brush hatch styles.
[wine] / include / t2embapi.h
1 /*
2  * Copyright (c) 2009 Andrew Nguyen
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
17  */
18
19 #ifndef __WINE_T2EMBAPI_H
20 #define __WINE_T2EMBAPI_H
21
22 #ifdef __cplusplus
23 extern "C" {
24 #endif
25
26 /* Possible return values. */
27 #define E_NONE                              __MSABI_LONG(0x0000)
28 #define E_API_NOTIMPL                       __MSABI_LONG(0x0001)
29
30 typedef ULONG (WINAPIV * READEMBEDPROC)(void*,void*,ULONG);
31 typedef ULONG (WINAPIV * WRITEEMBEDPROC)(void*,void*,ULONG);
32
33 typedef struct
34 {
35     unsigned short usStructSize;
36     unsigned short usRefStrSize;
37     unsigned short *pusRefStr;
38 } TTLOADINFO;
39
40 typedef struct
41 {
42     unsigned short usStructSize;
43     unsigned short usRootStrSize;
44     unsigned short *pusRootStr;
45 } TTEMBEDINFO;
46
47 LONG WINAPI TTLoadEmbeddedFont(HANDLE*,ULONG,ULONG*,ULONG,ULONG*,READEMBEDPROC,
48                                LPVOID,LPWSTR,LPSTR,TTLOADINFO*);
49
50 /* embedding privileges */
51 #define EMBED_PREVIEWPRINT  1
52 #define EMBED_EDITABLE      2
53 #define EMBED_INSTALLABLE   3
54 #define EMBED_NOEMBEDDING   4
55
56 LONG WINAPI TTGetEmbeddingType(HDC, ULONG*);
57
58 #ifdef __cplusplus
59 }
60 #endif
61
62 #endif