mirror of
https://github.com/pret/pokeheartgold.git
synced 2024-12-13 15:59:26 +00:00
17 lines
411 B
C
17 lines
411 B
C
#ifndef _MSL_MSLEXTERN_H
|
|
#define _MSL_MSLEXTERN_H
|
|
|
|
#ifdef __cplusplus
|
|
#define _MSL_BEGIN_NAMESPACE_STD namespace std {
|
|
#define _MSL_BEGIN_EXTERN_C extern "C" {
|
|
#define _MSL_END_EXTERN_C }
|
|
#define _MSL_END_NAMESPACE_STD }
|
|
#else
|
|
#define _MSL_BEGIN_NAMESPACE_STD
|
|
#define _MSL_BEGIN_EXTERN_C
|
|
#define _MSL_END_EXTERN_C
|
|
#define _MSL_END_NAMESPACE_STD
|
|
#endif //__cplusplus
|
|
|
|
#endif //_MSL_MSLEXTERN_H
|