16 lines
280 B
C
16 lines
280 B
C
#include "cell.h"
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include "stb_image_common.h"
|
|
|
|
IMAGE_DECODER(bmp)
|
|
|
|
IMAGE_ENCODER(bmp)
|
|
|
|
static const JSCFunctionListEntry js_bmp_funcs[] = {
|
|
MIST_FUNC_DEF(bmp, decode, 1),
|
|
MIST_FUNC_DEF(bmp, encode, 1)
|
|
};
|
|
|
|
CELL_USE_FUNCS(js_bmp_funcs)
|