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
637 B
20 lines
637 B
#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
|