dplayx: Stub function to pack dplay messages
[wine/gsoc_dplay.git] / include / t2embapi.h
blobf1997647d09202fea4eb054d9c787e8e310be5c0
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);
32 typedef struct
34 unsigned short usStructSize;
35 unsigned short usRefStrSize;
36 unsigned short *pusRefStr;
37 } TTLOADINFO;
39 LONG WINAPI TTLoadEmbeddedFont(HANDLE*,ULONG,ULONG*,ULONG,ULONG*,READEMBEDPROC,
40 LPVOID,LPWSTR,LPSTR,TTLOADINFO*);
42 #ifdef __cplusplus
44 #endif
46 #endif