diff options
Diffstat (limited to 'include/cdmf.h')
-rw-r--r-- | include/cdmf.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/include/cdmf.h b/include/cdmf.h new file mode 100644 index 0000000..7cc2a93 --- /dev/null +++ b/include/cdmf.h @@ -0,0 +1,24 @@ +/** \file + * \brief CD Metafile driver + * + * See Copyright Notice in cd.h + */ + +#ifndef __CD_MF_H +#define __CD_MF_H + +#ifdef __cplusplus +extern "C" { +#endif + +cdContext* cdContextMetafile(void); + +#define CD_METAFILE cdContextMetafile() + +#ifdef __cplusplus +} +#endif + +#endif /* ifndef __CD_MF_ */ + + |