wineps: Return a POINT for DC_PAPERSIZE.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=52132 Signed-off-by: Huw Davies <huw@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
5764980fea
commit
62e0f51e6e
|
@ -25,15 +25,19 @@
|
||||||
#define NONAMELESSUNION
|
#define NONAMELESSUNION
|
||||||
#define NONAMELESSSTRUCT
|
#define NONAMELESSSTRUCT
|
||||||
|
|
||||||
#include <string.h>
|
#include <stdarg.h>
|
||||||
|
|
||||||
#include "wine/debug.h"
|
#include "windef.h"
|
||||||
#include "psdrv.h"
|
#include "winbase.h"
|
||||||
|
#include "winnls.h"
|
||||||
|
#include "wingdi.h"
|
||||||
|
#include "winuser.h"
|
||||||
|
#include "prsht.h"
|
||||||
#include "ddk/winddiui.h"
|
#include "ddk/winddiui.h"
|
||||||
|
|
||||||
#include "winuser.h"
|
#include "wine/debug.h"
|
||||||
#include "wine/wingdi16.h"
|
|
||||||
#include "prsht.h"
|
#include "psdrv.h"
|
||||||
#include "psdlg.h"
|
#include "psdlg.h"
|
||||||
|
|
||||||
WINE_DEFAULT_DEBUG_CHANNEL(psdrv);
|
WINE_DEFAULT_DEBUG_CHANNEL(psdrv);
|
||||||
|
@ -561,7 +565,7 @@ DWORD WINAPI DrvDeviceCapabilities(HANDLE printer, WCHAR *device_name, WORD capa
|
||||||
case DC_PAPERSIZE:
|
case DC_PAPERSIZE:
|
||||||
{
|
{
|
||||||
PAGESIZE *ps;
|
PAGESIZE *ps;
|
||||||
POINT16 *pt = output;
|
POINT *pt = output;
|
||||||
int i = 0;
|
int i = 0;
|
||||||
|
|
||||||
LIST_FOR_EACH_ENTRY(ps, &pi->ppd->PageSizes, PAGESIZE, entry)
|
LIST_FOR_EACH_ENTRY(ps, &pi->ppd->PageSizes, PAGESIZE, entry)
|
||||||
|
|
Loading…
Reference in New Issue