123456789101112131415161718192021222324252627 |
- #ifndef __LIBG7221_CONFIG_H__
- #define __LIBG7221_CONFIG_H__
- #include <pj/config.h>
- #ifndef PJMEDIA_LIBG7221_FUNCS_INLINED
- # define PJMEDIA_LIBG7221_FUNCS_INLINED 0
- #endif
- #if PJMEDIA_LIBG7221_FUNCS_INLINED
- # define LIBG7221_DECL(type) PJ_INLINE(type)
- # define LIBG7221_DEF(type) PJ_INLINE(type)
- #else
- # define LIBG7221_DECL(type) PJ_DECL(type)
- # define LIBG7221_DEF(type) PJ_DEF(type)
- #endif
- #endif
|