po: Add message contexts for 'Desktop' and update Japanese translation.
[wine/multimedia.git] / include / t2embapi.h
blob151bfc1b0f852f784f18061802815eb2ac6787ec
1 /*
2 * Copyright (c) 2009 Andrew Nguyen
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.
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.
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
19 #ifndef __WINE_T2EMBAPI_H
20 #define __WINE_T2EMBAPI_H
22 #ifdef __cplusplus
23 extern "C" {
24 #endif
26 /* Possible return values. */
27 #define E_NONE 0x0000L
28 #define E_API_NOTIMPL 0x0001L
30 typedef ULONG (WINAPIV * READEMBEDPROC)(void*,void*,ULONG);
31 typedef ULONG (WINAPIV * WRITEEMBEDPROC)(void*,void*,ULONG);
33 typedef struct
35 unsigned short usStructSize;
36 unsigned short usRefStrSize;
37 unsigned short *pusRefStr;
38 } TTLOADINFO;
40 typedef struct
42 unsigned short usStructSize;
43 unsigned short usRootStrSize;
44 unsigned short *pusRootStr;
45 } TTEMBEDINFO;
47 LONG WINAPI TTLoadEmbeddedFont(HANDLE*,ULONG,ULONG*,ULONG,ULONG*,READEMBEDPROC,
48 LPVOID,LPWSTR,LPSTR,TTLOADINFO*);
50 /* embedding privileges */
51 #define EMBED_PREVIEWPRINT 1
52 #define EMBED_EDITABLE 2
53 #define EMBED_INSTALLABLE 3
54 #define EMBED_NOEMBEDDING 4
56 LONG WINAPI TTGetEmbeddingType(HDC, ULONG*);
58 #ifdef __cplusplus
60 #endif
62 #endif