Ignore:
Timestamp:
Apr 26, 2012 4:46:27 PM (12 years ago)
Author:
nanang
Message:

Misc (re #1446): Fixed compile errors on Symbian S60 5th Ed SDK: unrecognized a struct defined inside another struct and 64 bit integer constants suffix.

File:
1 edited

Legend:

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

    r4071 r4099  
    362362} pjsua_vid_win; 
    363363 
     364 
     365typedef struct pjsua_timer_list 
     366{ 
     367    PJ_DECL_LIST_MEMBER(struct pjsua_timer_list); 
     368    pj_timer_entry         entry; 
     369    void                  (*cb)(void *user_data); 
     370    void                   *user_data; 
     371} pjsua_timer_list; 
     372 
     373 
    364374/** 
    365375 * Global pjsua application data. 
     
    464474 
    465475    /* Timer entry list */ 
    466     struct timer_list 
    467     { 
    468         PJ_DECL_LIST_MEMBER(struct timer_list); 
    469         pj_timer_entry          entry; 
    470         void                  (*cb)(void *user_data); 
    471         void                   *user_data; 
    472     } timer_list; 
     476    pjsua_timer_list     timer_list; 
    473477    pj_mutex_t          *timer_mutex; 
    474478}; 
Note: See TracChangeset for help on using the changeset viewer.