projects
/
wine
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Better handling of custom templates and hooks.
[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
LOGPEN logpen;
17
} PENOBJ;
18
19
extern INT16 PEN_GetObject16( PENOBJ * pen, INT16 count, LPSTR buffer );
20
extern INT PEN_GetObject( PENOBJ * pen, INT count, LPSTR buffer );
21
22
#endif /* __WINE_PEN_H */