diff options
Diffstat (limited to 'C/LzmaLib.h')
-rw-r--r-- | C/LzmaLib.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/C/LzmaLib.h b/C/LzmaLib.h index c343a85..d7c0724 100644 --- a/C/LzmaLib.h +++ b/C/LzmaLib.h | |||
@@ -1,14 +1,14 @@ | |||
1 | /* LzmaLib.h -- LZMA library interface | 1 | /* LzmaLib.h -- LZMA library interface |
2 | 2021-04-03 : Igor Pavlov : Public domain */ | 2 | 2023-04-02 : Igor Pavlov : Public domain */ |
3 | 3 | ||
4 | #ifndef __LZMA_LIB_H | 4 | #ifndef ZIP7_INC_LZMA_LIB_H |
5 | #define __LZMA_LIB_H | 5 | #define ZIP7_INC_LZMA_LIB_H |
6 | 6 | ||
7 | #include "7zTypes.h" | 7 | #include "7zTypes.h" |
8 | 8 | ||
9 | EXTERN_C_BEGIN | 9 | EXTERN_C_BEGIN |
10 | 10 | ||
11 | #define MY_STDAPI int MY_STD_CALL | 11 | #define Z7_STDAPI int Z7_STDCALL |
12 | 12 | ||
13 | #define LZMA_PROPS_SIZE 5 | 13 | #define LZMA_PROPS_SIZE 5 |
14 | 14 | ||
@@ -100,7 +100,7 @@ Returns: | |||
100 | SZ_ERROR_THREAD - errors in multithreading functions (only for Mt version) | 100 | SZ_ERROR_THREAD - errors in multithreading functions (only for Mt version) |
101 | */ | 101 | */ |
102 | 102 | ||
103 | MY_STDAPI LzmaCompress(unsigned char *dest, size_t *destLen, const unsigned char *src, size_t srcLen, | 103 | Z7_STDAPI LzmaCompress(unsigned char *dest, size_t *destLen, const unsigned char *src, size_t srcLen, |
104 | unsigned char *outProps, size_t *outPropsSize, /* *outPropsSize must be = 5 */ | 104 | unsigned char *outProps, size_t *outPropsSize, /* *outPropsSize must be = 5 */ |
105 | int level, /* 0 <= level <= 9, default = 5 */ | 105 | int level, /* 0 <= level <= 9, default = 5 */ |
106 | unsigned dictSize, /* default = (1 << 24) */ | 106 | unsigned dictSize, /* default = (1 << 24) */ |
@@ -130,7 +130,7 @@ Returns: | |||
130 | SZ_ERROR_INPUT_EOF - it needs more bytes in input buffer (src) | 130 | SZ_ERROR_INPUT_EOF - it needs more bytes in input buffer (src) |
131 | */ | 131 | */ |
132 | 132 | ||
133 | MY_STDAPI LzmaUncompress(unsigned char *dest, size_t *destLen, const unsigned char *src, SizeT *srcLen, | 133 | Z7_STDAPI LzmaUncompress(unsigned char *dest, size_t *destLen, const unsigned char *src, SizeT *srcLen, |
134 | const unsigned char *props, size_t propsSize); | 134 | const unsigned char *props, size_t propsSize); |
135 | 135 | ||
136 | EXTERN_C_END | 136 | EXTERN_C_END |