Files
rdpy/lib/sip/rle.sip
2014-06-29 18:57:40 +02:00

10 lines
328 B
Plaintext

%Module(name=rle, language="C")
%UnitCode
#include "../../src/rle/rle.h"
%End
int rle_decode_uint8(void* output, int width, int height, char* input, int size);
int rle_decode_uint16(void* output, int width, int height, char* input, int size);
int rle_decode_uint24(void* output, int width, int height, char* input, int size);