Ignore:
Timestamp:
Nov 29, 2013 5:56:02 AM (10 years ago)
Author:
ming
Message:

Re #1519: Add Call API in pjsua2.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/branches/projects/pjsua2/pjsip/include/pjsua2/types.hpp

    r4657 r4663  
    7474typedef void *TransportHandle; 
    7575 
     76/** 
     77 * Timer entry, corresponds to pj_timer_entry 
     78 */ 
     79typedef void *TimerEntry; 
     80 
     81/** 
     82 * Generic data 
     83 */ 
     84typedef void *GenericData; 
     85 
    7686/* 
    7787 * Forward declaration of Account to be used 
     
    211221}; 
    212222 
     223////////////////////////////////////////////////////////////////////////////// 
     224 
     225/** 
     226 * Representation of time value. 
     227 */ 
     228struct TimeValue 
     229{ 
     230    /** 
     231     * The seconds part of the time. 
     232     */ 
     233    long sec; 
     234     
     235    /** 
     236     * The miliseconds fraction of the time. 
     237     */ 
     238    long msec; 
     239     
     240public: 
     241    /** 
     242     * Convert from pjsip 
     243     */ 
     244    void fromPj(const pj_time_val &prm); 
     245}; 
    213246 
    214247} // namespace pj 
Note: See TracChangeset for help on using the changeset viewer.