summaryrefslogtreecommitdiff
path: root/pjmedia/include/pjmedia
diff options
context:
space:
mode:
authorLiong Sauw Ming <ming@teluu.com>2011-12-09 05:15:39 +0000
committerLiong Sauw Ming <ming@teluu.com>2011-12-09 05:15:39 +0000
commit18e7622287344908ae3ce02164a40336da99d664 (patch)
tree5eed515bdd4de047c23f1e3d4ca3476a93ee69c8 /pjmedia/include/pjmedia
parent79da10cf65badc07e5ebd712f2aa43cc76844898 (diff)
Re #1420: Create a pool for the event manager so subscriber doesn't need to supply its own pool.
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@3905 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjmedia/include/pjmedia')
-rw-r--r--pjmedia/include/pjmedia/event.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/pjmedia/include/pjmedia/event.h b/pjmedia/include/pjmedia/event.h
index ba06625c..84baba9d 100644
--- a/pjmedia/include/pjmedia/event.h
+++ b/pjmedia/include/pjmedia/event.h
@@ -331,7 +331,6 @@ PJ_DECL(void) pjmedia_event_init(pjmedia_event *event,
* events from other publishers.
*
* @param mgr The event manager.
- * @param pool Pool to allocate memory from.
* @param cb The callback function to receive the event.
* @param user_data The user data to be associated with the callback
* function.
@@ -340,7 +339,6 @@ PJ_DECL(void) pjmedia_event_init(pjmedia_event *event,
* @return PJ_SUCCESS on success or the appropriate error code.
*/
PJ_DECL(pj_status_t) pjmedia_event_subscribe(pjmedia_event_mgr *mgr,
- pj_pool_t *pool,
pjmedia_event_cb *cb,
void *user_data,
void *epub);