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/pjsip/src/pjsip-simple/presence.c

    r1241 r1266  
    5858 * Presence message body type. 
    5959 */ 
    60 typedef enum content_type 
     60typedef enum content_type_e 
    6161{ 
    6262    CONTENT_TYPE_NONE, 
    6363    CONTENT_TYPE_PIDF, 
    6464    CONTENT_TYPE_XPIDF, 
    65 } content_type; 
     65} content_type_e; 
    6666 
    6767/* 
     
    7272    pjsip_evsub         *sub;           /**< Event subscribtion record.     */ 
    7373    pjsip_dialog        *dlg;           /**< The dialog.                    */ 
    74     content_type         content_type;  /**< Content-Type.                  */ 
     74    content_type_e       content_type;  /**< Content-Type.                  */ 
    7575    pjsip_pres_status    status;        /**< Presence status.               */ 
    7676    pjsip_pres_status    tmp_status;    /**< Temp, before NOTIFY is answred.*/ 
     
    227227    pjsip_expires_hdr *expires_hdr; 
    228228    unsigned expires; 
    229     content_type content_type = CONTENT_TYPE_NONE; 
     229    content_type_e content_type = CONTENT_TYPE_NONE; 
    230230    pjsip_evsub *sub; 
    231231    pjsip_pres *pres; 
Note: See TracChangeset for help on using the changeset viewer.