Ignore:
Timestamp:
Mar 5, 2007 12:58:24 AM (17 years ago)
Author:
bennylp
Message:

Implemented new STUN server framework

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib/include/pj/pool.h

    r992 r1040  
    443443 * @return pointer to the allocated memory. 
    444444 * 
    445  * @see PJ_POOL_ALLOC_TYPE 
     445 * @see PJ_POOL_ALLOC_T 
    446446 */ 
    447447PJ_IDECL(void*) pj_pool_alloc( pj_pool_t *pool, pj_size_t size); 
     
    470470 * @return          Pointer to the allocated memory. 
    471471 * 
    472  * @see PJ_POOL_ZALLOC_TYPE 
     472 * @see PJ_POOL_ZALLOC_T 
    473473 */ 
    474474PJ_INLINE(void*) pj_pool_zalloc(pj_pool_t *pool, pj_size_t size) 
     
    489489 * @return          Memory buffer of the specified type. 
    490490 */ 
    491 #define PJ_POOL_ALLOC_TYPE(pool,type) \ 
     491#define PJ_POOL_ALLOC_T(pool,type) \ 
    492492            ((type*)pj_pool_alloc(pool, sizeof(type))) 
    493493 
     
    503503 * @return          Memory buffer of the specified type. 
    504504 */ 
    505 #define PJ_POOL_ZALLOC_TYPE(pool,type) \ 
     505#define PJ_POOL_ZALLOC_T(pool,type) \ 
    506506            ((type*)pj_pool_zalloc(pool, sizeof(type))) 
    507507 
Note: See TracChangeset for help on using the changeset viewer.