Ignore:
Timestamp:
May 11, 2007 3:14:34 PM (17 years ago)
Author:
bennylp
Message:

HUGE changeset to make the rest of the libraries compile with C++ mode

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjmedia/src/pjmedia/master_port.c

    r974 r1266  
    8585 
    8686    /* Create the master port instance */ 
    87     m = pj_pool_zalloc(pool, sizeof(pjmedia_master_port)); 
     87    m = PJ_POOL_ZALLOC_T(pool, pjmedia_master_port); 
    8888    m->options = options; 
    8989    m->u_port = u_port; 
     
    145145static void clock_callback(const pj_timestamp *ts, void *user_data) 
    146146{ 
    147     pjmedia_master_port *m = user_data; 
     147    pjmedia_master_port *m = (pjmedia_master_port*) user_data; 
    148148    pjmedia_frame frame; 
    149149    pj_status_t status; 
Note: See TracChangeset for help on using the changeset viewer.