Stubs for PolyTextOutA/W.
diff --git a/objects/text.c b/objects/text.c
index bf6bf2a..c542a94 100644
--- a/objects/text.c
+++ b/objects/text.c
@@ -10,6 +10,7 @@
#include "wine/winuser16.h"
#include "winbase.h"
#include "winuser.h"
+#include "winerror.h"
#include "dc.h"
#include "gdi.h"
#include "heap.h"
@@ -782,3 +783,33 @@
}
return charSet;
}
+
+/***********************************************************************
+ * PolyTextOutA [GDI.402] Draw several Strings
+ */
+BOOL WINAPI PolyTextOutA (
+ HDC hdc, /* Handle to device context */
+ PPOLYTEXTA pptxt, /* array of strings */
+ INT cStrings /* Number of strings in array */
+ )
+{
+ FIXME("stub!\n");
+ SetLastError ( ERROR_CALL_NOT_IMPLEMENTED );
+ return 0;
+}
+
+
+
+/***********************************************************************
+ * PolyTextOutW [GDI.403] Draw several Strings
+ */
+BOOL WINAPI PolyTextOutW (
+ HDC hdc, /* Handle to device context */
+ PPOLYTEXTW pptxt, /* array of strings */
+ INT cStrings /* Number of strings in array */
+ )
+{
+ FIXME("stub!\n");
+ SetLastError ( ERROR_CALL_NOT_IMPLEMENTED );
+ return 0;
+}