| Line |  | 
|---|
| 1 | /* $Id: brush.h,v 1.1 1999-05-24 20:19:08 ktk Exp $ */ | 
|---|
| 2 |  | 
|---|
| 3 | /* | 
|---|
| 4 | * GDI brush definitions | 
|---|
| 5 | * | 
|---|
| 6 | * Copyright 1994 Alexandre Julliard | 
|---|
| 7 | */ | 
|---|
| 8 |  | 
|---|
| 9 | #ifndef __WINE_BRUSH_H | 
|---|
| 10 | #define __WINE_BRUSH_H | 
|---|
| 11 |  | 
|---|
| 12 | #include "gdi.h" | 
|---|
| 13 |  | 
|---|
| 14 | /* GDI logical brush object */ | 
|---|
| 15 | typedef struct | 
|---|
| 16 | { | 
|---|
| 17 | GDIOBJHDR   header; | 
|---|
| 18 | LOGBRUSH  logbrush; | 
|---|
| 19 | } BRUSHOBJ; | 
|---|
| 20 |  | 
|---|
| 21 | #define NB_HATCH_STYLES  6 | 
|---|
| 22 |  | 
|---|
| 23 | extern INT16 BRUSH_GetObject16( BRUSHOBJ * brush, INT16 count, LPSTR buffer ); | 
|---|
| 24 | extern INT BRUSH_GetObject( BRUSHOBJ * brush, INT count, LPSTR buffer ); | 
|---|
| 25 | extern BOOL BRUSH_DeleteObject( HBRUSH16 hbrush, BRUSHOBJ * brush ); | 
|---|
| 26 |  | 
|---|
| 27 | #endif  /* __WINE_BRUSH_H */ | 
|---|
       
      
  Note:
 See   
TracBrowser
 for help on using the repository browser.