From b62070c4f4816c9071adc9ffc281e08454d94a61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edin=20Ja=C5=A1arevi=C4=87?= Date: Sat, 8 Oct 2016 19:43:13 +0200 Subject: [PATCH] fix error code C2061 fix error code C2061 to build dll --- precomp_dll.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/precomp_dll.h b/precomp_dll.h index 6a4276c..d182b6e 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 { @@ -67,3 +64,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);