feature: Add sorting feature for online list #41

This commit is contained in:
yuanyuanxiang
2025-01-15 00:28:37 +08:00
parent 0ef817af9c
commit 8ec3e83d31
3 changed files with 49 additions and 0 deletions

View File

@@ -53,6 +53,9 @@ typedef struct _CONTEXT_OBJECT
sClientInfo[i] = s[i];
}
}
CString GetClientData(int index) const{
return sClientInfo[index];
}
}CONTEXT_OBJECT,*PCONTEXT_OBJECT;
typedef CList<PCONTEXT_OBJECT> ContextObjectList;