summaryrefslogtreecommitdiff
path: root/updater/socket.h
diff options
context:
space:
mode:
author(no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10>2010-02-21 23:00:56 +0000
committer(no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10>2010-02-21 23:00:56 +0000
commit8f5a7b54eb953bbfc877ec915e26b3a95ec28d00 (patch)
tree827e40ab3528e10afd6fcb44f7ed5db0d7eed519 /updater/socket.h
parentb130e8caa16961f597ae4ac6984a6aa00de7b6c7 (diff)
New updater with 3x reduced footprint and fully W7 and x64 compatible
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@476 4f64403b-2f21-0410-a795-97e2b3489a10
Diffstat (limited to 'updater/socket.h')
-rw-r--r--updater/socket.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/updater/socket.h b/updater/socket.h
index 7c5aadb..5879476 100644
--- a/updater/socket.h
+++ b/updater/socket.h
@@ -7,7 +7,7 @@
#include "popups.h"
-#include "zlib123/contrib/minizip/munzip.h"
+#include "zbin/minizip/munzip.h"
// gets a file from a url, puts in in the temp_folder and names it after the plugin_name (same extension as url)
// it will automatically unzip a zip file, putting the contents in the temp_folder and using the names from the archive
@@ -17,6 +17,6 @@ bool GetFile(char *url, TCHAR *temp_folder, char *plugin_name, char *version, bo
// check the xml backend data or version URL (depending on whether the plugin is on the file listing) to see if we need an update
// returns new version string (which you must free) and sets beta to indicate where update should be retreived from (i.e. if
// beta url is enabled, will return true in beta unless the non-beta version is higher)
-char *UpdateRequired(UpdateInternal *update_internal, bool *beta);
+char *UpdateRequired(UpdateInternal &update_internal, bool *beta);
#endif