- Timestamp:
- Oct 16, 2006 3:52:31 PM (18 years ago)
- Location:
- pjproject/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjlib/include/pj/config_site_sample.h
r750 r774 15 15 */ 16 16 #if defined(PJ_WIN32_WINCE) && PJ_WIN32_WINCE!=0 17 # if !defined(PJ_DEBUG) || PJ_DEBUG==018 # define PJ_LOG_MAX_LEVEL 019 # define PJ_ENABLE_EXTRA_CHECK 020 # endif21 22 17 # define PJ_HAS_FLOATING_POINT 0 23 18 -
pjproject/trunk/pjsip-apps/src/pjsua_wince/pjsua_wince.cpp
r717 r774 249 249 { 250 250 } 251 252 251 253 252 … … 276 275 /* Init configs */ 277 276 pjsua_config_default(&cfg); 278 pjsua_logging_config_default(&log_cfg);279 277 pjsua_media_config_default(&media_cfg); 280 278 pjsua_transport_config_default(&udp_cfg); … … 282 280 pjsua_transport_config_default(&rtp_cfg); 283 281 rtp_cfg.port = 40000; 282 283 pjsua_logging_config_default(&log_cfg); 284 log_cfg.level = 5; 285 log_cfg.log_filename = pj_str("\\pjsua.txt"); 286 log_cfg.msg_logging = 1; 287 log_cfg.decor = pj_log_get_decor() | PJ_LOG_HAS_CR; 284 288 285 289 /* Setup media */
Note: See TracChangeset
for help on using the changeset viewer.