Added missing #include "config.h"
[wine/multimedia.git] / include / brush.h
blob8c136d9275a062ea3284394a59e4960c26db126d
1 /*
2 * GDI brush definitions
4 * Copyright 1994 Alexandre Julliard
5 */
7 #ifndef __WINE_BRUSH_H
8 #define __WINE_BRUSH_H
10 #include "gdi.h"
12 /* GDI logical brush object */
13 typedef struct
15 GDIOBJHDR header;
16 LOGBRUSH32 logbrush;
17 } BRUSHOBJ;
19 #define NB_HATCH_STYLES 6
21 extern INT16 BRUSH_GetObject16( BRUSHOBJ * brush, INT16 count, LPSTR buffer );
22 extern INT32 BRUSH_GetObject32( BRUSHOBJ * brush, INT32 count, LPSTR buffer );
23 extern BOOL32 BRUSH_DeleteObject( HBRUSH16 hbrush, BRUSHOBJ * brush );
25 #endif /* __WINE_BRUSH_H */