Changeset 4700 for pjproject


Ignore:
Timestamp:
Jan 2, 2014 1:25:22 AM (10 years ago)
Author:
ming
Message:

Re #1630 (misc): Fixed documentation of pjsip_generic_int_hdr

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/include/pjsip/sip_msg.h

    r3553 r4700  
    10621062 
    10631063/** 
    1064  * Generic SIP header, which contains hname and a string hvalue. 
     1064 * Generic SIP header, which contains hname and an integer ivalue. 
    10651065 */ 
    10661066typedef struct pjsip_generic_int_hdr 
    10671067{ 
    1068     PJSIP_DECL_HDR_MEMBER(struct pjsip_generic_int_hdr); /**< Standard header field. */ 
    1069     pj_int32_t ivalue;                              /**< ivalue */ 
     1068    /** Standard header field. */ 
     1069    PJSIP_DECL_HDR_MEMBER(struct pjsip_generic_int_hdr); 
     1070    /** ivalue */ 
     1071    pj_int32_t ivalue; 
    10701072} pjsip_generic_int_hdr; 
    10711073 
Note: See TracChangeset for help on using the changeset viewer.