mirror of
https://github.com/reactos/reactos.git
synced 2025-05-16 15:50:24 +00:00
added a few pointer types
svn path=/trunk/; revision=600
This commit is contained in:
parent
3975f17012
commit
b3995a1493
1 changed files with 4 additions and 4 deletions
|
@ -1367,7 +1367,7 @@ typedef struct {
|
|||
LPCTSTR lpszOutput;
|
||||
LPCTSTR lpszDatatype;
|
||||
DWORD fwType;
|
||||
} DOCINFO;
|
||||
} DOCINFO, *PDOCINFO;
|
||||
|
||||
typedef struct {
|
||||
UINT uNotification;
|
||||
|
@ -1488,7 +1488,7 @@ typedef struct tagLOGBRUSH {
|
|||
UINT lbStyle;
|
||||
COLORREF lbColor;
|
||||
LONG lbHatch;
|
||||
} LOGBRUSH;
|
||||
} LOGBRUSH, *PLOGBRUSH;
|
||||
|
||||
typedef struct tagEMRCREATEBRUSHINDIRECT
|
||||
{
|
||||
|
@ -1568,7 +1568,7 @@ typedef struct tagLOGPEN {
|
|||
UINT lopnStyle;
|
||||
POINT lopnWidth;
|
||||
COLORREF lopnColor;
|
||||
} LOGPEN;
|
||||
} LOGPEN, *PLOGPEN;
|
||||
|
||||
typedef struct tagEMRCREATEPEN
|
||||
{
|
||||
|
@ -3809,7 +3809,7 @@ typedef struct _RGNDATAHEADER {
|
|||
typedef struct _RGNDATA {
|
||||
RGNDATAHEADER rdh;
|
||||
char Buffer[1];
|
||||
} RGNDATA, *LPRGNDATA;
|
||||
} RGNDATA, *PRGNDATA, *LPRGNDATA;
|
||||
|
||||
typedef struct tagSCROLLINFO {
|
||||
UINT cbSize;
|
||||
|
|
Loading…
Reference in a new issue