Ignore:
Timestamp:
Jan 23, 2014 8:13:11 AM (10 years ago)
Author:
nanang
Message:

Misc (re #1630): Fixed symbols that should not be exported (thanks Tzafrir Cohen for the patch).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/src/pjsip-simple/presence.c

    r3553 r4713  
    131131 * Some static constants. 
    132132 */ 
    133 const pj_str_t STR_EVENT            = { "Event", 5 }; 
    134 const pj_str_t STR_PRESENCE         = { "presence", 8 }; 
    135 const pj_str_t STR_APPLICATION      = { "application", 11 }; 
    136 const pj_str_t STR_PIDF_XML         = { "pidf+xml", 8}; 
    137 const pj_str_t STR_XPIDF_XML        = { "xpidf+xml", 9}; 
    138 const pj_str_t STR_APP_PIDF_XML     = { "application/pidf+xml", 20 }; 
    139 const pj_str_t STR_APP_XPIDF_XML    = { "application/xpidf+xml", 21 }; 
     133static const pj_str_t STR_EVENT     = { "Event", 5 }; 
     134static const pj_str_t STR_PRESENCE          = { "presence", 8 }; 
     135static const pj_str_t STR_APPLICATION       = { "application", 11 }; 
     136static const pj_str_t STR_PIDF_XML          = { "pidf+xml", 8}; 
     137static const pj_str_t STR_XPIDF_XML         = { "xpidf+xml", 9}; 
     138static const pj_str_t STR_APP_PIDF_XML      = { "application/pidf+xml", 20 }; 
     139static const pj_str_t STR_APP_XPIDF_XML    = { "application/xpidf+xml", 21 }; 
    140140 
    141141 
Note: See TracChangeset for help on using the changeset viewer.