diff options
Diffstat (limited to 'updater/common.h')
-rw-r--r-- | updater/common.h | 14 |
1 files changed, 13 insertions, 1 deletions
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<UpdateInternal>
{
UpdateList() : OBJLIST<UpdateInternal>(10) {}
- UpdateList(const UpdateList& upd) : OBJLIST<UpdateInternal>(10)
+ UpdateList(const UpdateList& upd) : OBJLIST<UpdateInternal>(10, compareUrl)
{
for (int i=0; i<upd.getCount(); ++i)
insert(new UpdateInternal(upd[i]));
}
+
+ static int compareUrl(const UpdateInternal* p1, const UpdateInternal* p2)
+ {
+ if (!p1->update.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<TCHAR>
|