1
0
mirror of https://github.com/DxWnd/DxWnd.reloaded synced 2024-12-30 09:25:35 +01:00
DxWnd.reloaded/host/CDragEdit.h
gho tik 1a522bb76b v2_03_75_src
Former-commit-id: a616cd9c318d40393233f30c84c4587aacefb377
2017-03-06 11:46:22 -05:00

14 lines
282 B
C++

// CDragEdit class: inherited by DEdit, adds drag & drop of file pathnames
// within the text field.
class CDragEdit : public CEdit
{
public:
CDragEdit();
virtual ~CDragEdit();
BOOL OnInitDialog();
private:
afx_msg void OnDropFiles(HDROP hDropInfo);
DECLARE_MESSAGE_MAP()
};