Commit bf25cdb7 authored by Sam Rushing's avatar Sam Rushing

The '...Ctx()' functions are static in lz4

parent ad36b8bf
...@@ -7,5 +7,6 @@ cdef extern from "lz4.h": ...@@ -7,5 +7,6 @@ cdef extern from "lz4.h":
cdef int LZ4_uncompress (char * source, char * dest, int osize) cdef int LZ4_uncompress (char * source, char * dest, int osize)
cdef int LZ4_compressBound (int isize) cdef int LZ4_compressBound (int isize)
cdef int LZ4_uncompress_unknownOutputSize (char * source, char * dest, int isize, int maxOutputSize) cdef int LZ4_uncompress_unknownOutputSize (char * source, char * dest, int isize, int maxOutputSize)
cdef int LZ4_compressCtx (void ** ctx, char * source, char * dest, int isize) # these are apparently static...
cdef int LZ4_compress64kCtx (void ** ctx, char * source, char * dest, int isize) #cdef int LZ4_compressCtx (void ** ctx, char * source, char * dest, int isize)
#cdef int LZ4_compress64kCtx (void ** ctx, char * source, char * dest, int isize)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment