summaryrefslogtreecommitdiff
path: root/iup/src/win/iupwin_brush.h
blob: 463f323b87784a237bf6d6e25ddf227d86213edd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/** \file
 * \brief Windows Brush Cache
 *
 * See Copyright Notice in "iup.h"
 */
 
#ifndef __IUPWIN_BRUSH_H 
#define __IUPWIN_BRUSH_H

#ifdef __cplusplus
extern "C" {
#endif

/* returns a brush from the brush cache. */
HBRUSH iupwinBrushGet(COLORREF c);

/* initializes the brush cache */
void iupwinBrushInit(void);
void iupwinBrushFinish(void);


#ifdef __cplusplus
}
#endif

#endif