diff options
author | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2007-06-27 05:27:30 +0000 |
---|---|---|
committer | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2007-06-27 05:27:30 +0000 |
commit | 2b8de7f0339506e75c47ffb0e14ee2e527ab1353 (patch) | |
tree | 1236a9f0999c0dcf7a8bea63290c40866a00d519 /tipper/tipper.cpp | |
parent | 239ad94877dcf2ef148143ab3c7debde94dbb6cc (diff) |
added ersatz support (protocol-specific status messages)
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@210 4f64403b-2f21-0410-a795-97e2b3489a10
Diffstat (limited to 'tipper/tipper.cpp')
-rw-r--r-- | tipper/tipper.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tipper/tipper.cpp b/tipper/tipper.cpp index 0eabf18..37ab521 100644 --- a/tipper/tipper.cpp +++ b/tipper/tipper.cpp @@ -145,8 +145,13 @@ int ModulesLoaded(WPARAM wParam, LPARAM lParam) { // before the version that we use to locate it on the page
// (note that if the update URL and the version URL point to standard file listing entries, the backend xml
// data will be used to check for updates rather than the actual web page - this is not true for beta urls)
+#ifdef _UNICODE
update.szBetaUpdateURL = "http://www.scottellis.com.au/miranda_plugins/tipper.zip";
update.szBetaVersionURL = "http://www.scottellis.com.au/miranda_plugins/ver_tipper.html";
+#else
+ update.szBetaUpdateURL = "http://www.scottellis.com.au/miranda_plugins/tipper_ansi.zip";
+ update.szBetaVersionURL = "http://www.scottellis.com.au/miranda_plugins/ver_tipper_ansi.html";
+#endif
update.pbBetaVersionPrefix = (BYTE *)"Tipper version ";
update.cpbBetaVersionPrefix = strlen((char *)update.pbBetaVersionPrefix);
|