Share via


COPYDATASTRUCT (Windows CE 5.0)

Send Feedback

This structure contains data to be passed to another application by the WM_COPYDATA message.

typedef struct tagCOPYDATASTRUCT {DWORD dwData; DWORD cbData; PVOID lpData; } COPYDATASTRUCT; 

Members

  • dwData
    Specifies up to 32 bits of data to be passed to the receiving application.
  • cbData
    Specifies the size, in bytes, of the data pointed to by the lpData member.
  • lpData
    Long pointer to data to be passed to the receiving application. This member can be NULL.

Requirements

OS Versions: Windows CE 1.0 and later.
Header: Winuser.h.

See Also

WM_COPYDATA

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.