Use "CALL" and "RET" in capital letters for distinction.
[wine.git] / include / brush.h
blob5ca8b58dc4f9c21fd2130f69481965059ef6548c
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 LOGBRUSH logbrush;
17 } BRUSHOBJ;
19 #define NB_HATCH_STYLES 6
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 );
25 #endif /* __WINE_BRUSH_H */