From 2a63014742e62d7d036ba1009ced1a50cab16e93 Mon Sep 17 00:00:00 2001 From: "(no author)" <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10> Date: Wed, 10 Nov 2010 04:49:47 +0000 Subject: Added URL sorting to improve update performance git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@553 4f64403b-2f21-0410-a795-97e2b3489a10 --- updater/common.h | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'updater/common.h') diff --git a/updater/common.h b/updater/common.h index 2387c94..890fa47 100644 --- a/updater/common.h +++ b/updater/common.h @@ -69,11 +69,23 @@ typedef struct UpdateInternal_tag { struct UpdateList : OBJLIST { UpdateList() : OBJLIST(10) {} - UpdateList(const UpdateList& upd) : OBJLIST(10) + UpdateList(const UpdateList& upd) : OBJLIST(10, compareUrl) { for (int i=0; iupdate.szBetaVersionURL && !p2->update.szBetaVersionURL) + return 0; + else if (!p1->update.szBetaVersionURL && p2->update.szBetaVersionURL) + return -1; + else if (p1->update.szBetaVersionURL && !p2->update.szBetaVersionURL) + return 1; + else + return _stricmp(p1->update.szBetaVersionURL, p2->update.szBetaVersionURL); + } }; struct StrList : LIST -- cgit v1.2.3