DRAGTRANSFER: Difference between revisions
Appearance
Created page with "Drag-conversation structure. == Type == struct == C Declaration Method == typedef == Example Code == <pre> typedef struct _DRAGTRANSFER { ULONG cb; →Size, in bytes, of the structure.: HWND hwndClient; →Handle of the client window.: PDRAGITEM pditem; →Pointer to the DRAGITEM structure that is to be rendered.: HSTR hstrSelectedRMF; /* String handle for the selected rendering mechani..." |
(No difference)
|
Latest revision as of 02:42, 21 April 2025
Drag-conversation structure.
Type
struct
C Declaration Method
typedef
Example Code
typedef struct _DRAGTRANSFER { ULONG cb; /* Size, in bytes, of the structure. */ HWND hwndClient; /* Handle of the client window. */ PDRAGITEM pditem; /* Pointer to the DRAGITEM structure that is to be rendered. */ HSTR hstrSelectedRMF; /* String handle for the selected rendering mechanism and format for the transfer operation. */ HSTR hstrRenderToName; /* String handle representing the name where the source places, and the target finds, the data that is rendered. */ ULONG ulTargetInfo; /* Reserved. */ USHORT usOperation; /* The operation. */ USHORT fsReply; /* Reply flags. */ } DRAGTRANSFER; typedef DRAGTRANSFER * PDRAGTRANSFER ;