Ignore:
Timestamp:
Oct 25, 2011 9:35:11 AM (12 years ago)
Author:
bennylp
Message:

Re #1400: enhancements to video operations in pjsua application

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/include/pjsua-lib/pjsua.h

    r3849 r3850  
    30933093 
    30943094/** 
     3095 * Get current config for the account. This will copy current account setting 
     3096 * to the specified parameter. Note that all pointers in the settings will 
     3097 * point to the original settings in the account and application must not 
     3098 * modify the values in any way. Application must also take care that these 
     3099 * data is only valid until the account is destroyed. 
     3100 * 
     3101 * @param acc_id        The account ID. 
     3102 * @param acc_cfg       Structure to receive the settings. 
     3103 * 
     3104 * @return              PJ_SUCCESS on success, or the appropriate error code. 
     3105 */ 
     3106PJ_DECL(pj_status_t) pjsua_acc_get_config(pjsua_acc_id acc_id, 
     3107                                          pjsua_acc_config *acc_cfg); 
     3108 
     3109 
     3110/** 
    30953111 * Modify account information. 
    30963112 * 
Note: See TracChangeset for help on using the changeset viewer.