blob: 040f6046bc017511b2edb88100603759d3457be1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef _CD_VOID_
#define _CD_VOID_
#ifdef __cplusplus
extern "C" {
#endif
cdContext* cdContextVoid(void);
#define CD_VOID cdContextVoid()
#ifdef __cplusplus
}
#endif
#endif /* ifndef _CD_VOID_ */
|