first commit
This commit is contained in:
14
include/mupdf/fitz/pool.h
Normal file
14
include/mupdf/fitz/pool.h
Normal file
@@ -0,0 +1,14 @@
|
||||
#ifndef MUPDF_FITZ_POOL_H
|
||||
#define MUPDF_FITZ_POOL_H
|
||||
|
||||
#include "mupdf/fitz/system.h"
|
||||
#include "mupdf/fitz/context.h"
|
||||
|
||||
typedef struct fz_pool_s fz_pool;
|
||||
|
||||
fz_pool *fz_new_pool(fz_context *ctx);
|
||||
void *fz_pool_alloc(fz_context *ctx, fz_pool *pool, size_t size);
|
||||
char *fz_pool_strdup(fz_context *ctx, fz_pool *pool, const char *s);
|
||||
void fz_drop_pool(fz_context *ctx, fz_pool *pool);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user