blob: 925a1dae5310185863c639be6722384f1bfa8fed [file] [log] [blame]
Nanang Izzuddin97925732009-06-01 16:43:45 +00001#ifndef __LIBG7221_CONFIG_H__
2#define __LIBG7221_CONFIG_H__
3
4#include <pj/config.h>
5
6/**
7 * Expand basic operation functions as inline.
8 *
9 * Default: 1 (yes)
10 */
11#ifndef PJMEDIA_LIBG7221_FUNCS_INLINED
12# define PJMEDIA_LIBG7221_FUNCS_INLINED 1
13#endif
14
15/* Declare/define a function that may be expanded as inline. */
16#if PJMEDIA_LIBG7221_FUNCS_INLINED
17# define LIBG7221_DECL(type) PJ_INLINE(type)
18# define LIBG7221_DEF(type) PJ_INLINE(type)
19#else
20# define LIBG7221_DECL(type) PJ_DECL(type)
21# define LIBG7221_DEF(type) PJ_DEF(type)
22#endif
23
24#endif /* __LIBG7221_CONFIG_H__ */