WindowsXP-SP1/windows/netdde/incs/ddepkt.h
2020-09-30 16:53:49 +02:00

21 lines
637 B
C

#ifndef H__ddepkt
#define H__ddepkt
/*
D D E P K T
DDEPKT is the unit of "message" in the netdde environment.
Each DDEPKT contains the information pertaining to one DDE message.
*/
typedef struct ddepkt {
DWORD dp_size; /* size of DDEPKT including this structure */
struct ddepkt FAR *dp_prev; /* previous pointer */
struct ddepkt FAR *dp_next; /* next pointer */
DWORD_PTR dp_hDstDder; /* handle to destination DDER */
DWORD_PTR dp_hDstRouter; /* handle to destination Router */
DWORD dp_routerCmd; /* command for final Router */
} DDEPKT;
typedef DDEPKT FAR *LPDDEPKT;
#endif