t2embed: Implement TTLoadEmbeddedFont as a stub.
diff --git a/include/t2embapi.h b/include/t2embapi.h
new file mode 100644
index 0000000..f199764
--- /dev/null
+++ b/include/t2embapi.h
@@ -0,0 +1,46 @@
+/*
+ * Copyright (c) 2009 Andrew Nguyen
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+#ifndef __WINE_T2EMBAPI_H
+#define __WINE_T2EMBAPI_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/* Possible return values. */
+#define E_NONE 0x0000L
+#define E_API_NOTIMPL 0x0001L
+
+typedef ULONG (WINAPIV * READEMBEDPROC)(void*,void*,ULONG);
+
+typedef struct
+{
+ unsigned short usStructSize;
+ unsigned short usRefStrSize;
+ unsigned short *pusRefStr;
+} TTLOADINFO;
+
+LONG WINAPI TTLoadEmbeddedFont(HANDLE*,ULONG,ULONG*,ULONG,ULONG*,READEMBEDPROC,
+ LPVOID,LPWSTR,LPSTR,TTLOADINFO*);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif