diff options
-rw-r--r-- | include/cdsvg.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/include/cdsvg.h b/include/cdsvg.h new file mode 100644 index 0000000..53861ae --- /dev/null +++ b/include/cdsvg.h @@ -0,0 +1,22 @@ +/** \file + * \brief SVG driver + * + * See Copyright Notice in cd.h + */ + +#ifndef __CD_SVG_H +#define __CD_SVG_H + +#ifdef __cplusplus +extern "C" { +#endif + +cdContext* cdContextSVG(void); + +#define CD_SVG cdContextSVG() + +#ifdef __cplusplus +} +#endif + +#endif /* ifndef __CD_SVG_ */ |