pmd-sky/include/ansi_params.h
2023-09-14 13:39:03 +02:00

19 lines
441 B
C

#ifndef _MSL_MSLEXTERN_H
#define _MSL_MSLEXTERN_H
// from the heartgold decomp
#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