blob: 7f89ec3b3e56572e4a5e55c3907ddb060dd77334 [file] [log] [blame]
Alexandre Julliard7cbe6571995-01-09 18:21:16 +00001/*
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 Julliard7cbe6571995-01-09 18:21:16 +000012 /* GDI logical pen object */
13typedef struct
14{
15 GDIOBJHDR header;
Alexandre Julliarda3960291999-02-26 11:11:13 +000016 LOGPEN logpen;
Alexandre Julliard7cbe6571995-01-09 18:21:16 +000017} PENOBJ;
18
Alexandre Julliard139a4b11996-11-02 14:24:07 +000019extern INT16 PEN_GetObject16( PENOBJ * pen, INT16 count, LPSTR buffer );
Alexandre Julliarda3960291999-02-26 11:11:13 +000020extern INT PEN_GetObject( PENOBJ * pen, INT count, LPSTR buffer );
Alexandre Julliard7cbe6571995-01-09 18:21:16 +000021
22#endif /* __WINE_PEN_H */