summaryrefslogtreecommitdiff
path: root/pjsip-apps/src/pjsystest/gui.h
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2009-07-16 11:37:15 +0000
committerBenny Prijono <bennylp@teluu.com>2009-07-16 11:37:15 +0000
commit16c9aaba16eb52933d21a3e8be876bf0cbaf7dc1 (patch)
treecfaa9ce06156a7e29838b48e6f67a02f52210fab /pjsip-apps/src/pjsystest/gui.h
parent5d0127a9b3b7159206918142986f67b9489b71ec (diff)
More ticket #920: fix latency calculation not able to calculate latency higher than 500ms and added copyright info in source files
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@2836 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjsip-apps/src/pjsystest/gui.h')
-rw-r--r--pjsip-apps/src/pjsystest/gui.h28
1 files changed, 23 insertions, 5 deletions
diff --git a/pjsip-apps/src/pjsystest/gui.h b/pjsip-apps/src/pjsystest/gui.h
index 0ae1ba36..5f056fc0 100644
--- a/pjsip-apps/src/pjsystest/gui.h
+++ b/pjsip-apps/src/pjsystest/gui.h
@@ -1,3 +1,21 @@
+/* $Id$ */
+/*
+ * Copyright (C) 2008-2009 Teluu Inc. (http://www.teluu.com)
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
#ifndef __GUI_H__
#define __GUI_H__
@@ -33,19 +51,19 @@ enum gui_key
};
/* Initialize GUI with the menus and stuff */
-PJ_DECL(pj_status_t) gui_init(gui_menu *menu);
+pj_status_t gui_init(gui_menu *menu);
/* Run GUI main loop */
-PJ_DECL(pj_status_t) gui_start(gui_menu *menu);
+pj_status_t gui_start(gui_menu *menu);
/* Signal GUI mainloop to stop */
-PJ_DECL(void) gui_destroy(void);
+void gui_destroy(void);
/* AUX: display messagebox */
-PJ_DECL(enum gui_key) gui_msgbox(const char *title, const char *message, enum gui_flag flag);
+enum gui_key gui_msgbox(const char *title, const char *message, enum gui_flag flag);
/* AUX: sleep */
-PJ_DECL(void) gui_sleep(unsigned sec);
+void gui_sleep(unsigned sec);
PJ_END_DECL