48 lines
1.5 KiB
C
48 lines
1.5 KiB
C
/*
|
|
* Definitions for Wine GDI drivers
|
|
*
|
|
* Copyright 2011 Alexandre Julliard
|
|
*
|
|
* 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_WINE_GDI_DRIVER_H
|
|
#define __WINE_WINE_GDI_DRIVER_H
|
|
|
|
struct gdi_dc_funcs;
|
|
|
|
typedef struct gdi_physdev
|
|
{
|
|
const struct gdi_dc_funcs *funcs;
|
|
struct gdi_physdev *next;
|
|
HDC hdc;
|
|
} *PHYSDEV;
|
|
|
|
struct bitblt_coords
|
|
{
|
|
int log_x; /* original position and size, in logical coords */
|
|
int log_y;
|
|
int log_width;
|
|
int log_height;
|
|
int x; /* mapped position and size, in device coords */
|
|
int y;
|
|
int width;
|
|
int height;
|
|
RECT visrect; /* rectangle clipped to the visible part, in device coords */
|
|
DWORD layout; /* DC layout */
|
|
};
|
|
|
|
#endif /* __WINE_WINE_GDI_DRIVER_H */
|