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
617 B

  1. #ifndef H__ddepkt
  2. #define H__ddepkt
  3. /*
  4. D D E P K T
  5. DDEPKT is the unit of "message" in the netdde environment.
  6. Each DDEPKT contains the information pertaining to one DDE message.
  7. */
  8. typedef struct ddepkt {
  9. DWORD dp_size; /* size of DDEPKT including this structure */
  10. struct ddepkt FAR *dp_prev; /* previous pointer */
  11. struct ddepkt FAR *dp_next; /* next pointer */
  12. DWORD_PTR dp_hDstDder; /* handle to destination DDER */
  13. DWORD_PTR dp_hDstRouter; /* handle to destination Router */
  14. DWORD dp_routerCmd; /* command for final Router */
  15. } DDEPKT;
  16. typedef DDEPKT FAR *LPDDEPKT;
  17. #endif