summaryrefslogtreecommitdiff
path: root/pjsip/src/test-pjsip/test.h
diff options
context:
space:
mode:
Diffstat (limited to 'pjsip/src/test-pjsip/test.h')
-rw-r--r--pjsip/src/test-pjsip/test.h16
1 files changed, 13 insertions, 3 deletions
diff --git a/pjsip/src/test-pjsip/test.h b/pjsip/src/test-pjsip/test.h
index d5f84031..225c8be7 100644
--- a/pjsip/src/test-pjsip/test.h
+++ b/pjsip/src/test-pjsip/test.h
@@ -16,11 +16,21 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-#include <pj/types.h>
+#ifndef __TEST_H__
+#define __TEST_H__
-pj_status_t test_uri(void);
-pj_status_t test_msg(void);
+#include <pjsip/sip_types.h>
#define SILENT 1
#define IS_PROFILING 1
#define LOOP 2000
+
+extern pjsip_endpoint *endpt;
+
+pj_status_t parse_uri(void);
+pj_status_t parse_msg(void);
+
+void app_perror(const char *msg, pj_status_t status);
+
+
+#endif /* __TEST_H__ */