11 lines
309 B
Plaintext
11 lines
309 B
Plaintext
%Module rle
|
|
|
|
namespace rle {
|
|
%TypeHeaderCode
|
|
#include <rle.h>
|
|
%End
|
|
|
|
int decode_uint8(char* output, int width, int height, char* input, int size);
|
|
int decode_uint16(char* output, int width, int height, char* input, int size);
|
|
int decode_uint24(char* output, int width, int height, char* input, int size);
|
|
}; |