Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
526 B

  1. /*----------------------------------------------------------------------------
  2. | DDEDATA structure
  3. |
  4. | WM_DDE_DATA parameter structure for hData (LOWORD(lParam)).
  5. | The actual size of this structure depends on the size of
  6. | the Value array.
  7. |
  8. ----------------------------------------------------------------------------*/
  9. typedef struct {
  10. unsigned short wStatus;
  11. short cfFormat;
  12. HAND16 Value;
  13. } DDEDATA16;
  14. typedef struct {
  15. unsigned short wStatus;
  16. short cfFormat;
  17. HANDLE Value;
  18. } DDEDATA32;