00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef __POOL_STACK_H__
00021 #define __POOL_STACK_H__
00022
00023 #include <pj/pool.h>
00024
00074 PJ_BEGIN_DECL
00075
00094 PJ_DECL(pj_pool_t*) pj_pool_create_on_buf(const char *name,
00095 void *buf,
00096 pj_size_t size);
00097
00098 PJ_END_DECL
00099
00104 #endif
00105