New examples/documentation for console configuration options.
[wine] / include / pen.h
1 /*
2  * GDI pen definitions
3  *
4  * Copyright 1994 Alexandre Julliard
5  */
6
7 #ifndef __WINE_PEN_H
8 #define __WINE_PEN_H
9
10 #include "gdi.h"
11
12   /* GDI logical pen object */
13 typedef struct
14 {
15     GDIOBJHDR   header;
16     LOGPEN32    logpen;
17 } PENOBJ;
18
19 extern INT16 PEN_GetObject16( PENOBJ * pen, INT16 count, LPSTR buffer );
20 extern INT32 PEN_GetObject32( PENOBJ * pen, INT32 count, LPSTR buffer );
21
22 #endif  /* __WINE_PEN_H */