blob: 75e24f3a38a2bb4c86bab7db542c298e6498ec12 (
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
27
28
29
|
/** \file
* \brief GDI+ Control
*
* See Copyright Notice in cd.h
*/
#ifndef __CD_GDIPLUS_H
#define __CD_GDIPLUS_H
#ifdef __cplusplus
extern "C" {
#endif
#ifdef WIN32
void cdInitGdiPlus(void); /* old function, replaced by cdInitContextPlus */
#else
#define cdInitGdiPlus() (0)
#endif
/* Windows GDI+ Adicional Polygons */
#define CD_SPLINE (CD_POLYCUSTOM+0)
#define CD_FILLSPLINE (CD_POLYCUSTOM+1)
#define CD_FILLGRADIENT (CD_POLYCUSTOM+2)
#ifdef __cplusplus
}
#endif
#endif /* ifndef _CD_GDIPLUS_ */
|