10 lines
151 B
C
10 lines
151 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#if defined(__cplusplus)
|
||
|
|
#define __BEGIN_DECLS extern "C" {
|
||
|
|
#define __END_DECLS }
|
||
|
|
#else
|
||
|
|
#define __BEGIN_DECLS
|
||
|
|
#define __END_DECLS
|
||
|
|
#endif
|