mirror of
https://github.com/reactos/reactos.git
synced 2025-08-07 03:03:13 +00:00

- Move sdk\include\reactos\wine to sdk\include\wine - Reorder the directories in include_directories() to be closer to alphabetical. This should make it easier to determine what global include directories can be removed in the future.
72 lines
1.8 KiB
C
72 lines
1.8 KiB
C
/*
|
|
* 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 <stdarg.h>
|
|
#include <windef.h>
|
|
#include <winbase.h>
|
|
#include <wingdi.h>
|
|
#include <wine/winbase16.h>
|
|
|
|
#include <pshpack1.h>
|
|
|
|
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 <poppack.h>
|
|
|
|
#endif /* __WINE_WINE_WINGDI16_H */
|