Commit 87d95b7b authored by Peter Ganten's avatar Peter Ganten Committed by Alexandre Julliard

Stubs for PolyTextOutA/W.

parent c73a1fd6
......@@ -3355,6 +3355,9 @@ BOOL WINAPI TranslateCharsetInfo(LPDWORD,LPCHARSETINFO,DWORD);
BOOL WINAPI UnrealizeObject(HGDIOBJ);
BOOL WINAPI UpdateColors(HDC);
BOOL WINAPI WidenPath(HDC);
BOOL WINAPI PolyTextOutA(HDC,PPOLYTEXTA,INT);
BOOL WINAPI PolyTextOutW(HDC,PPOLYTEXTW,INT);
#define PolyTextOut WINELIB_NAME_AW(PolyTextOut)
#ifdef __cplusplus
}
......
......@@ -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 @@ UINT WINAPI GetTextCharsetInfo(
}
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;
}
......@@ -304,8 +304,8 @@ init MAIN_GdiInit
399 stdcall PolyDraw(long ptr ptr long) PolyDraw
400 stdcall PolyPolygon(long ptr ptr long) PolyPolygon
401 stdcall PolyPolyline(long ptr ptr long) PolyPolyline
402 stub PolyTextOutA
403 stub PolyTextOutW
402 stdcall PolyTextOutA(long ptr long) PolyTextOutA
403 stdcall PolyTextOutW(long ptr long) PolyTextOutW
404 stdcall Polygon(long ptr long) Polygon
405 stdcall Polyline(long ptr long) Polyline
406 stdcall PolylineTo(long ptr long) PolylineTo
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment