From ba4ae833d03ced0a9a9f1141aeec3cca88b168d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edin=20Ja=C5=A1arevi=C4=87?= Date: Sat, 8 Oct 2016 20:11:32 +0200 Subject: [PATCH] fix use_mp3 param --- precomp_dll.h | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/precomp_dll.h b/precomp_dll.h index 6a4276c..274de80 100644 --- a/precomp_dll.h +++ b/precomp_dll.h @@ -1,6 +1,3 @@ -DLL void get_copyright_msg(char* msg); -DLL bool precompress_file(char* in_file, char* out_file, char* msg, Switches switches); -DLL bool recompress_file(char* in_file, char* out_file, char* msg, Switches switches); // Switches class class Switches { @@ -32,6 +29,7 @@ class Switches { bool use_png; bool use_gif; bool use_jpg; + bool use_mp3; bool use_swf; bool use_base64; bool use_bzip2; @@ -59,6 +57,7 @@ Switches::Switches() { use_png = true; use_gif = true; use_jpg = true; + use_mp3 = true; use_swf = true; use_base64 = true; use_bzip2 = true; @@ -67,3 +66,7 @@ Switches::Switches() { use_zlib_level[i] = true; } } + +DLL void get_copyright_msg(char* msg); +DLL bool precompress_file(char* in_file, char* out_file, char* msg, Switches switches); +DLL bool recompress_file(char* in_file, char* out_file, char* msg, Switches switches);