- Timestamp:
- Feb 21, 2006 11:40:16 PM (19 years ago)
- Location:
- pjproject/trunk/pjlib/include/pj
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjlib/include/pj/compat/string.h
r198 r206 43 43 # endif 44 44 # define snprintf _snprintf 45 # define snwprintf _snwprintf 45 46 # define wcsicmp _wcsicmp 46 47 # define wcsnicmp _wcsnicmp … … 67 68 #define pj_ansi_strnicmp strncasecmp 68 69 #define pj_ansi_sprintf sprintf 70 #define pj_ansi_snprintf snprintf 69 71 70 72 #define pj_unicode_strcmp wcscmp … … 80 82 #define pj_unicode_strnicmp wcsnicmp 81 83 #define pj_unicode_sprintf swprintf 84 #define pj_unicode_snprintf snwprintf 82 85 83 86 … … 95 98 # define pj_native_strnicmp pj_unicode_strnicmp 96 99 # define pj_native_sprintf pj_unicode_sprintf 100 # define pj_native_snprintf pj_unicode_snprintf 97 101 #else 98 102 # define pj_native_strcmp pj_ansi_strcmp … … 108 112 # define pj_native_strnicmp pj_ansi_strnicmp 109 113 # define pj_native_sprintf pj_ansi_sprintf 114 # define pj_native_snprintf pj_ansi_snprintf 110 115 #endif 111 116 -
pjproject/trunk/pjlib/include/pj/errno.h
r138 r206 302 302 303 303 304 /* 305 * Below are list of error spaces that have been taken so far: 306 * - PJSIP_ERRNO_START (PJ_ERRNO_START_USER) 307 * - PJMEDIA_ERRNO_START (PJ_ERRNO_START_USER + PJ_ERRNO_SPACE_SIZE) 308 * - PJSIP_SIMPLE_ERRNO_START (PJ_ERRNO_START_USER + PJ_ERRNO_SPACE_SIZE*2) 309 */ 310 311 304 312 PJ_END_DECL 305 313
Note: See TracChangeset
for help on using the changeset viewer.