diff options
author | Petr Mrázek <peterix@gmail.com> | 2017-05-05 01:34:01 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2017-05-05 01:34:01 +0200 |
commit | e854894a3cf58936eb447e4476fb863cb05ea3f9 (patch) | |
tree | 4810bf4ef46ab05ba2c030737ecf147300e5b46f /libraries/pack200/include | |
parent | 0ce44dbd41efc68b7a0cc8e50c0c8d9989b800b3 (diff) | |
download | PrismLauncher-e854894a3cf58936eb447e4476fb863cb05ea3f9.tar.gz PrismLauncher-e854894a3cf58936eb447e4476fb863cb05ea3f9.tar.bz2 PrismLauncher-e854894a3cf58936eb447e4476fb863cb05ea3f9.zip |
GH-1876 turn pack200 into a shared library
Diffstat (limited to 'libraries/pack200/include')
-rw-r--r-- | libraries/pack200/include/unpack200.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libraries/pack200/include/unpack200.h b/libraries/pack200/include/unpack200.h index 9c3eda2d..30ce6656 100644 --- a/libraries/pack200/include/unpack200.h +++ b/libraries/pack200/include/unpack200.h @@ -24,7 +24,8 @@ */ #pragma once -#include <string> + +#include "multimc_unpack200_export.h" /** * @brief Unpack a PACK200 file @@ -33,4 +34,4 @@ * @param output_path Path to the output file in PACK200 format. System native string encoding. * @throw std::runtime_error for any error encountered */ -void unpack_200(FILE * input_path, FILE * output_path); +MULTIMC_UNPACK200_EXPORT void unpack_200(FILE * input_path, FILE * output_path); |