Ignore:
Timestamp:
Feb 27, 2013 10:11:59 AM (10 years ago)
Author:
nanang
Message:

Re #1556: backported to 1.x

Location:
pjproject/branches/1.x
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • pjproject/branches/1.x

  • pjproject/branches/1.x/pjlib/include/pj/guid.h

    r3553 r4385  
    8484 
    8585/** 
     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 */ 
     94PJ_DECL(pj_str_t*) pj_generate_unique_string_lower(pj_str_t *str); 
     95 
     96/** 
    8697 * Generate a unique string. 
    8798 * 
     
    90101 */ 
    91102PJ_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 */ 
     110PJ_DECL(void) pj_create_unique_string_lower(pj_pool_t *pool, pj_str_t *str); 
    92111 
    93112 
Note: See TracChangeset for help on using the changeset viewer.