24 lines
273 B
C
24 lines
273 B
C
|
/** \file
|
||
|
* \brief DGN driver
|
||
|
*
|
||
|
* See Copyright Notice in cd.h
|
||
|
*/
|
||
|
|
||
|
#ifndef __CD_DGN_H
|
||
|
#define __CD_DGN_H
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
cdContext* cdContextDGN(void);
|
||
|
|
||
|
#define CD_DGN cdContextDGN()
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif /* ifndef __CD_DGN_ */
|
||
|
|