Stubs for PolyTextOutA/W.
This commit is contained in:
parent
c73a1fd62d
commit
87d95b7bc5
|
@ -3355,6 +3355,9 @@ BOOL WINAPI TranslateCharsetInfo(LPDWORD,LPCHARSETINFO,DWORD);
|
||||||
BOOL WINAPI UnrealizeObject(HGDIOBJ);
|
BOOL WINAPI UnrealizeObject(HGDIOBJ);
|
||||||
BOOL WINAPI UpdateColors(HDC);
|
BOOL WINAPI UpdateColors(HDC);
|
||||||
BOOL WINAPI WidenPath(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
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,6 +10,7 @@
|
||||||
#include "wine/winuser16.h"
|
#include "wine/winuser16.h"
|
||||||
#include "winbase.h"
|
#include "winbase.h"
|
||||||
#include "winuser.h"
|
#include "winuser.h"
|
||||||
|
#include "winerror.h"
|
||||||
#include "dc.h"
|
#include "dc.h"
|
||||||
#include "gdi.h"
|
#include "gdi.h"
|
||||||
#include "heap.h"
|
#include "heap.h"
|
||||||
|
@ -782,3 +783,33 @@ UINT WINAPI GetTextCharsetInfo(
|
||||||
}
|
}
|
||||||
return charSet;
|
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
|
399 stdcall PolyDraw(long ptr ptr long) PolyDraw
|
||||||
400 stdcall PolyPolygon(long ptr ptr long) PolyPolygon
|
400 stdcall PolyPolygon(long ptr ptr long) PolyPolygon
|
||||||
401 stdcall PolyPolyline(long ptr ptr long) PolyPolyline
|
401 stdcall PolyPolyline(long ptr ptr long) PolyPolyline
|
||||||
402 stub PolyTextOutA
|
402 stdcall PolyTextOutA(long ptr long) PolyTextOutA
|
||||||
403 stub PolyTextOutW
|
403 stdcall PolyTextOutW(long ptr long) PolyTextOutW
|
||||||
404 stdcall Polygon(long ptr long) Polygon
|
404 stdcall Polygon(long ptr long) Polygon
|
||||||
405 stdcall Polyline(long ptr long) Polyline
|
405 stdcall Polyline(long ptr long) Polyline
|
||||||
406 stdcall PolylineTo(long ptr long) PolylineTo
|
406 stdcall PolylineTo(long ptr long) PolylineTo
|
||||||
|
|
Loading…
Reference in New Issue