diff options
Diffstat (limited to 'libraries/pack200/src/unpack.h')
-rw-r--r-- | libraries/pack200/src/unpack.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libraries/pack200/src/unpack.h b/libraries/pack200/src/unpack.h index 8363740d..cc5dd60a 100644 --- a/libraries/pack200/src/unpack.h +++ b/libraries/pack200/src/unpack.h @@ -23,6 +23,8 @@ * questions. */ +#pragma once + // Global Structures struct jar; struct gunzip; @@ -33,6 +35,8 @@ struct cpindex; struct inner_class; struct value_stream; +typedef int64_t (*read_input_fn_t)(unpacker *self, void *buf, int64_t minlen, int64_t maxlen); + struct cpindex { uint32_t len; @@ -186,8 +190,6 @@ struct unpacker int unsized_bytes_read; // callback to read at least one byte, up to available input - typedef int64_t (*read_input_fn_t)(unpacker *self, void *buf, int64_t minlen, - int64_t maxlen); read_input_fn_t read_input_fn; // archive header fields |