diff options
author | Petr Mrázek <peterix@gmail.com> | 2013-12-22 18:49:52 +0100 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2013-12-22 18:49:52 +0100 |
commit | 3051d0d3283656baafe6021e5036fdca9db0c4aa (patch) | |
tree | 1b8d57283c060c4cb6b88fec75fc2afd03916f5d /depends/pack200/include | |
parent | 7a07ed79407edcb2a543aa0dc80745a0b8c2e234 (diff) | |
download | MultiMC-3051d0d3283656baafe6021e5036fdca9db0c4aa.tar MultiMC-3051d0d3283656baafe6021e5036fdca9db0c4aa.tar.gz MultiMC-3051d0d3283656baafe6021e5036fdca9db0c4aa.tar.lz MultiMC-3051d0d3283656baafe6021e5036fdca9db0c4aa.tar.xz MultiMC-3051d0d3283656baafe6021e5036fdca9db0c4aa.zip |
Make pack200 use QFile by proxy, eliminating some unicode issues.
Diffstat (limited to 'depends/pack200/include')
-rw-r--r-- | depends/pack200/include/unpack200.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/depends/pack200/include/unpack200.h b/depends/pack200/include/unpack200.h index bcee8009..f9239488 100644 --- a/depends/pack200/include/unpack200.h +++ b/depends/pack200/include/unpack200.h @@ -34,4 +34,4 @@ * @return void * @throw std::runtime_error for any error encountered */ -void unpack_200(std::string input_path, std::string output_path); +void unpack_200(FILE * input, FILE * output); |