GH-1876 turn pack200 into a shared library

This commit is contained in:
Petr Mrázek
2017-05-05 01:34:01 +02:00
parent 0ce44dbd41
commit e854894a3c
3 changed files with 11 additions and 8 deletions

View File

@ -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);