mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-13 10:04:04 +01:00
286f7c643f
When this option is enabled all png images will be converted to PNG-8 (8 bit per pixel).
14 lines
418 B
C
14 lines
418 B
C
#ifndef MEMPOOL_H
|
|
#define MEMPOOL_H
|
|
|
|
#include <stddef.h>
|
|
|
|
struct mempool;
|
|
typedef struct mempool *mempoolptr;
|
|
|
|
LIQ_PRIVATE void* mempool_create(mempoolptr *mptr, const unsigned int size, unsigned int capacity, void* (*malloc)(size_t), void (*free)(void*));
|
|
LIQ_PRIVATE void* mempool_alloc(mempoolptr *mptr, const unsigned int size, const unsigned int capacity);
|
|
LIQ_PRIVATE void mempool_destroy(mempoolptr m);
|
|
|
|
#endif
|