Fixed bug in CreateFileMapping when name is not NULL.
[wine/multimedia.git] / include / pen.h
blobeffed43776dcf323f2223c3e322ecbc351d4b8c2
1 /*
2 * GDI pen definitions
4 * Copyright 1994 Alexandre Julliard
5 */
7 #ifndef __WINE_PEN_H
8 #define __WINE_PEN_H
10 #include "gdi.h"
12 /* GDI logical pen object */
13 typedef struct
15 GDIOBJHDR header;
16 LOGPEN32 logpen;
17 } PENOBJ;
19 extern INT16 PEN_GetObject16( PENOBJ * pen, INT16 count, LPSTR buffer );
20 extern INT32 PEN_GetObject32( PENOBJ * pen, INT32 count, LPSTR buffer );
22 #endif /* __WINE_PEN_H */