1
0
mirror of https://github.com/DxWnd/DxWnd.reloaded synced 2024-12-30 09:25:35 +01:00
DxWnd.reloaded/host/CDragEdit.h

14 lines
282 B
C
Raw Permalink Normal View History

// 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()
};