summaryrefslogtreecommitdiffstats
path: root/hostTools/lzma/compress/7zapi.cpp
diff options
context:
space:
mode:
authorroot <root@lamia.panaceas.james.local>2015-12-19 14:18:43 +0000
committerroot <root@lamia.panaceas.james.local>2015-12-19 14:18:43 +0000
commit71478fd62d8483483abb34609cdabb7f9cbadfd6 (patch)
tree37b8eaba1ffe2d5f775227911eb0ed6fdc3c9553 /hostTools/lzma/compress/7zapi.cpp
parent1a2238d1bddc823df06f67312d96ccf9de2893cc (diff)
downloadbootloader-71478fd62d8483483abb34609cdabb7f9cbadfd6.tar.gz
bootloader-71478fd62d8483483abb34609cdabb7f9cbadfd6.tar.bz2
bootloader-71478fd62d8483483abb34609cdabb7f9cbadfd6.zip
Add hostTools from https://github.com/Noltari/cfe_bcm63xx
Diffstat (limited to 'hostTools/lzma/compress/7zapi.cpp')
-rw-r--r--hostTools/lzma/compress/7zapi.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/hostTools/lzma/compress/7zapi.cpp b/hostTools/lzma/compress/7zapi.cpp
new file mode 100644
index 0000000..cc6c908
--- /dev/null
+++ b/hostTools/lzma/compress/7zapi.cpp
@@ -0,0 +1,19 @@
+#include "7z.h"
+/********************** APIs Definitions ************************************/
+
+extern "C" {
+
+int compress_lzma_7zapi(const unsigned char* in_data, unsigned in_size, unsigned char* out_data, unsigned *out_size, unsigned algo, unsigned dictionary_size, unsigned num_fast_bytes);
+
+}
+
+int compress_lzma_7zapi(const unsigned char* in_data, unsigned in_size, unsigned char* out_data, unsigned *out_size, unsigned algo, unsigned dictionary_size, unsigned num_fast_bytes)
+{
+ bool ret;
+ //unsigned outsize = *out_size;
+
+ ret = compress_lzma_7z(in_data, in_size, out_data, *out_size, algo, dictionary_size, num_fast_bytes);
+
+ return (int)ret;
+}
+