2026-01-02 20:00:18 +01:00
|
|
|
|
#pragma once
|
2025-06-28 22:26:45 +08:00
|
|
|
|
#include <afxcmn.h>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class CFileListCtrl :public CListCtrl
|
|
|
|
|
|
{
|
|
|
|
|
|
DECLARE_MESSAGE_MAP()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
void* m_pCFileManagerDlg;
|
|
|
|
|
|
void SetParenDlg(VOID* p_CFileManagerDlg);
|
|
|
|
|
|
afx_msg void OnDropFiles(HDROP hDropInfo);
|
|
|
|
|
|
};
|