Alexandre Julliard | 7cbe657 | 1995-01-09 18:21:16 +0000 | [diff] [blame] | 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 | |
Alexandre Julliard | 7cbe657 | 1995-01-09 18:21:16 +0000 | [diff] [blame] | 12 | /* GDI logical pen object */ |
| 13 | typedef struct |
| 14 | { |
| 15 | GDIOBJHDR header; |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 16 | LOGPEN logpen; |
Alexandre Julliard | 7cbe657 | 1995-01-09 18:21:16 +0000 | [diff] [blame] | 17 | } PENOBJ; |
| 18 | |
Alexandre Julliard | 139a4b1 | 1996-11-02 14:24:07 +0000 | [diff] [blame] | 19 | extern INT16 PEN_GetObject16( PENOBJ * pen, INT16 count, LPSTR buffer ); |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 20 | extern INT PEN_GetObject( PENOBJ * pen, INT count, LPSTR buffer ); |
Alexandre Julliard | 7cbe657 | 1995-01-09 18:21:16 +0000 | [diff] [blame] | 21 | |
| 22 | #endif /* __WINE_PEN_H */ |