Init: Migrate SimpleRemoter (Since v1.3.1) to Gitea

This commit is contained in:
yuanyuanxiang
2026-04-19 19:55:01 +02:00
commit 5a325a202b
744 changed files with 235562 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
#pragma once
#include "afxcmn.h"
#include <string.h>
class CSortListCtrl : public CListCtrl
{
public:
CSortListCtrl(void) : m_bAsc(false), m_nSortedCol(0) {}
~CSortListCtrl(void) {}
// 是否为升序
bool m_bAsc;
// 当前排列的序
int m_nSortedCol;
afx_msg void OnLvnColumnclick(NMHDR* pNMHDR, LRESULT* pResult);
DECLARE_MESSAGE_MAP()
};