00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef __PJNATH_TYPES_H__
00021 #define __PJNATH_TYPES_H__
00022
00028 #include <pj/types.h>
00029 #include <pjnath/config.h>
00030
00036 PJ_BEGIN_DECL
00037
00042 #define PJ_TURN_INVALID_CHANNEL 0xFFFF
00043
00044
00050 PJ_DECL(pj_status_t) pjnath_init(void);
00051
00052
00060 #if PJNATH_ERROR_LEVEL <= PJ_LOG_MAX_LEVEL
00061 PJ_DECL(void) pjnath_perror(const char *sender, const char *title,
00062 pj_status_t status);
00063 #else
00064 # define pjnath_perror(sender, title, status)
00065 #endif
00066
00067
00068
00069 PJ_END_DECL
00070
00075 #endif
00076