Changeset 3829 for pjproject/branches/1.x/pjsip/include/pjsua-lib/pjsua.h
- Timestamp:
- Oct 19, 2011 12:45:05 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/branches/1.x/pjsip/include/pjsua-lib/pjsua.h
r3762 r3829 1295 1295 1296 1296 /** 1297 * Flags to be given to pjsua_destroy2() 1298 */ 1299 typedef enum pjsua_destroy_flag 1300 { 1301 /** 1302 * Do not invoke any networking functions. 1303 */ 1304 PJSUA_DESTROY_NO_NETWORK = 1 1305 1306 } pjsua_destroy_flag; 1307 1308 /** 1297 1309 * Use this function to initialize pjsua config. 1298 1310 * … … 1430 1442 * keep track of it's state. 1431 1443 * 1444 * @see pjsua_destroy2() 1445 * 1432 1446 * @return PJ_SUCCESS on success, or the appropriate error code. 1433 1447 */ 1434 1448 PJ_DECL(pj_status_t) pjsua_destroy(void); 1449 1450 1451 /** 1452 * Variant of destroy with additional flags. 1453 * 1454 * @param flags Combination of pjsua_destroy_flag enumeration. 1455 * 1456 * @return PJ_SUCCESS on success, or the appropriate error code. 1457 */ 1458 PJ_DECL(pj_status_t) pjsua_destroy2(unsigned flags); 1435 1459 1436 1460
Note: See TracChangeset
for help on using the changeset viewer.