Implemented processing for actions: SPI_GET/SETGRIDGRANULARITY,
[wine] / include / brush.h
1 /*
2  * GDI brush definitions
3  *
4  * Copyright 1994 Alexandre Julliard
5  */
6
7 #ifndef __WINE_BRUSH_H
8 #define __WINE_BRUSH_H
9
10 #include "gdi.h"
11
12   /* GDI logical brush object */
13 typedef struct
14 {
15     GDIOBJHDR   header;
16     LOGBRUSH  logbrush;
17 } BRUSHOBJ;
18
19 #define NB_HATCH_STYLES  6
20
21 extern INT16 BRUSH_GetObject16( BRUSHOBJ * brush, INT16 count, LPSTR buffer );
22 extern INT BRUSH_GetObject( BRUSHOBJ * brush, INT count, LPSTR buffer );
23 extern BOOL BRUSH_DeleteObject( HBRUSH16 hbrush, BRUSHOBJ * brush );
24
25 #endif  /* __WINE_BRUSH_H */