Changeset 4385 for pjproject/branches/1.x/pjlib/include/pj/guid.h
- Timestamp:
- Feb 27, 2013 10:11:59 AM (10 years ago)
- Location:
- pjproject/branches/1.x
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/branches/1.x
- Property svn:mergeinfo changed
/pjproject/trunk merged: 4208,4296
- Property svn:mergeinfo changed
-
pjproject/branches/1.x/pjlib/include/pj/guid.h
r3553 r4385 84 84 85 85 /** 86 * Create a globally unique string in lowercase, which length is 87 * PJ_GUID_STRING_LENGTH characters. Caller is responsible for preallocating 88 * the storage used in the string. 89 * 90 * @param str The string to store the result. 91 * 92 * @return The string. 93 */ 94 PJ_DECL(pj_str_t*) pj_generate_unique_string_lower(pj_str_t *str); 95 96 /** 86 97 * Generate a unique string. 87 98 * … … 90 101 */ 91 102 PJ_DECL(void) pj_create_unique_string(pj_pool_t *pool, pj_str_t *str); 103 104 /** 105 * Generate a unique string in lowercase. 106 * 107 * @param pool Pool to allocate memory from. 108 * @param str The string. 109 */ 110 PJ_DECL(void) pj_create_unique_string_lower(pj_pool_t *pool, pj_str_t *str); 92 111 93 112
Note: See TracChangeset
for help on using the changeset viewer.