DROPFILESDROPFILES*
*Contents  *Index  *Topic Contents
*Previous Topic: DESKBANDINFO
*Next Topic: EXT_BUTTON

DROPFILES


typedef struct _DROPFILES { 
    DWORD pFiles; 
    POINT pt; 
    BOOL fNC; 
    BOOL fWide; 
} DROPFILES, FAR * LPDROPFILES; 

Defines the CF_HDROP and CF_PRINTERS clipboard formats. In the CF_HDROP case, the data that follows is a double null-terminated list of file names. For CF_PRINTERS, the data that follows are the printer friendly names.

pFiles
Offset of the file list from the beginning of this structure, in bytes.
pt
Drop point. The coordinates depend on fNC.
fNC
Nonclient area flag. If this member is TRUE, pt specifies the screen coordinates of a point in a window's nonclient area. If it is FALSE, pt specifies the client coordinates of a point in the client area.
fWide
Value that indicates if the file contains wide characters. This value is nonzero if it does contain wide characters, or zero otherwise.

Up Top of Page
© 1997 Microsoft Corporation. All rights reserved. Terms of Use.