ENDROPFILES

The ENDDROPFILES structure contains information associated with an EN_DROPFILES notification message. A rich edit control sends this notification message when it receives a WM_DROPFILES message.

typedef struct _endropfiles { 
    NMHDR nmhdr; 
    HANDLE hDrop; 
    LONG cp; 
    BOOL fProtected; 
} ENDROPFILES; 
 

Members

nmhdr
Notification header.
hDrop
Handle to the dropped files list (same as with WM_DROPFILES). This handle is used with the DragFinish, DragQueryFile, and DragQueryPoint functions.
cp
Character position at which the dropped files would be inserted.
fProtected
Boolean value specifying whether the specified character position is protected (TRUE) or not protected (FALSE).

QuickInfo

  Windows NT: Requires version 3.51 or later.
  Windows: Requires Windows 95 or later.
  Windows CE: Unsupported.
  Header: Declared in richedit.h.

See Also

Rich Edit Controls Overview, Rich Edit Structures, DragFinish, DragQueryFile, DragQueryPoint, EN_DROPFILES, WM_DROPFILES