Ignore:
Timestamp:
May 28, 2006 2:58:12 PM (18 years ago)
Author:
bennylp
Message:

More changes in pjsua API to make it more complete high level API

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/src/pjsua-lib/pjsua_settings.c

    r476 r482  
    1919#include <pjsua-lib/pjsua.h> 
    2020#include <stdio.h> 
     21#include "pjsua_imp.h" 
     22 
    2123 
    2224/* 
     
    10081010    PJ_UNUSED_ARG(max); 
    10091011 
     1012    if (config == NULL) 
     1013        config = &pjsua.config; 
     1014 
    10101015    cfg.ptr = buf; 
    10111016    cfg.slen = 0; 
     
    12111216    return PJ_SUCCESS; 
    12121217} 
     1218 
     1219/** 
     1220 * Get pjsua running config. 
     1221 */ 
     1222PJ_DEF(const pjsua_config*) pjsua_get_config(void) 
     1223{ 
     1224    return &pjsua.config; 
     1225} 
     1226 
Note: See TracChangeset for help on using the changeset viewer.