Add snapshot for Lime legacy

This commit is contained in:
Joshua Granick
2014-11-12 22:20:57 -08:00
parent 3482813780
commit bdc7039b19
239 changed files with 92735 additions and 55 deletions

View File

@@ -0,0 +1,17 @@
#ifndef NME_LZMA_H
#define NME_LZMA_H
#include <hx/CFFI.h>
namespace nme {
class Lzma {
public:
static void Encode(buffer input_buffer, buffer output_buffer);
static void Decode(buffer input_buffer, buffer output_buffer);
};
}
#endif