Release 960824
[wine/multimedia.git] / include / brush.h
bloba7c02f6a5077b158dbc5c6b0d3fc6c463787fb54
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 LOGBRUSH16 logbrush;
17 } BRUSHOBJ;
19 extern BOOL BRUSH_Init(void);
20 extern int BRUSH_GetObject( BRUSHOBJ * brush, int count, LPSTR buffer );
21 extern BOOL BRUSH_DeleteObject( HBRUSH hbrush, BRUSHOBJ * brush );
22 extern HBRUSH BRUSH_SelectObject( DC * dc, HBRUSH hbrush, BRUSHOBJ * brush );
24 #endif /* __WINE_BRUSH_H */