aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Tsomenko <t-detsom@microsoft.com>2017-07-11 18:22:44 +0300
committerEugene Kliuchnikov <eustas@google.com>2017-07-11 17:22:44 +0200
commit172a378debedec81eb19747c96c28a81d917d284 (patch)
treea3762cc75b33bbc1cf61c2ad5d910cd69d4f438c
parent5aabc7a6ab3ed1b3701646440df1d526411a6e31 (diff)
downloadbrotli-172a378debedec81eb19747c96c28a81d917d284.zip
brotli-172a378debedec81eb19747c96c28a81d917d284.tar.gz
brotli-172a378debedec81eb19747c96c28a81d917d284.tar.bz2
add BROTLI_DEC_API to methods (#572)
-rwxr-xr-xc/include/brotli/decode.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/c/include/brotli/decode.h b/c/include/brotli/decode.h
index b18e9e4..356edd1 100755
--- a/c/include/brotli/decode.h
+++ b/c/include/brotli/decode.h
@@ -327,7 +327,7 @@ BROTLI_DEC_API BROTLI_BOOL BrotliDecoderIsUsed(const BrotliDecoderState* state);
* the input and produced all of the output
* @returns ::BROTLI_FALSE otherwise
*/
-BROTLI_BOOL BrotliDecoderIsFinished(const BrotliDecoderState* state);
+BROTLI_DEC_API BROTLI_BOOL BrotliDecoderIsFinished(const BrotliDecoderState* state);
/**
* Acquires a detailed error code.
@@ -340,7 +340,7 @@ BROTLI_BOOL BrotliDecoderIsFinished(const BrotliDecoderState* state);
* @param state decoder instance
* @returns last saved error code
*/
-BrotliDecoderErrorCode BrotliDecoderGetErrorCode(
+BROTLI_DEC_API BrotliDecoderErrorCode BrotliDecoderGetErrorCode(
const BrotliDecoderState* state);
/**