/* * Copyright (C) the Wine project * * 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 Street, Fifth Floor, Boston, MA 02110-1301 USA */ #ifndef __WINE_WINE_WINGDI16_H #define __WINE_WINE_WINGDI16_H #include #include #include #include #include #include typedef struct { UINT16 lbStyle; COLORREF lbColor; INT16 lbHatch; } LOGBRUSH16, *LPLOGBRUSH16; typedef struct { INT16 lfHeight; INT16 lfWidth; INT16 lfEscapement; INT16 lfOrientation; INT16 lfWeight; BYTE lfItalic; BYTE lfUnderline; BYTE lfStrikeOut; BYTE lfCharSet; BYTE lfOutPrecision; BYTE lfClipPrecision; BYTE lfQuality; BYTE lfPitchAndFamily; CHAR lfFaceName[LF_FACESIZE]; } LOGFONT16, *LPLOGFONT16; typedef struct { INT16 mm; INT16 xExt; INT16 yExt; HMETAFILE16 hMF; } METAFILEPICT16, *LPMETAFILEPICT16; typedef struct { UINT16 lopnStyle; POINT16 lopnWidth; COLORREF lopnColor; } LOGPEN16, *LPLOGPEN16; #include #endif /* __WINE_WINE_WINGDI16_H */