]> 4ch.mooo.com Git - 16.git/blob - 16/vgmsnd/common.h
fbe7807ed333edc9b8d14bb2df694e5ba0ed0663
[16.git] / 16 / vgmsnd / common.h
1 #ifndef __COMMON_H__
2 #define __COMMON_H__
3
4 #include "stdtype.h"
5 #include "stdbool.h"
6
7 #ifndef INLINE
8 #if defined(_MSC_VER)
9 #define INLINE  static __inline // __forceinline
10 #elif defined(__GNUC__)
11 #define INLINE  static __inline__
12 #else
13 #define INLINE  static inline
14 #endif
15 #endif  // INLINE
16
17 #endif  // __COMMON_H__