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

40 lines
914 B
C
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* Strings share with other modules:
*/
#define NETDDE_TITLE "NetDDE"
#define NETDDE_CLASS "NetDDEMainWdw"
typedef struct _THREADDATA {
struct _THREADDATA *ptdNext;
HWINSTA hwinsta;
HDESK hdesk;
HWND hwndDDE;
HWND hwndDDEAgent;
HANDLE heventReady;
DWORD dwThreadId;
BOOL bInitiating;
} THREADDATA, *PTHREADDATA;
typedef struct _IPCINIT {
HDDER hDder;
LPDDEPKT lpDdePkt;
BOOL bStartApp;
LPSTR lpszCmdLine;
WORD dd_type;
} IPCINIT, *PIPCINIT;
typedef struct _IPCXMIT {
HIPC hIpc;
HDDER hDder;
LPDDEPKT lpDdePkt;
} IPCXMIT, *PIPCXMIT;
extern PTHREADDATA ptdHead;
extern UINT wMsgIpcXmit;
extern UINT wMsgDoTerminate;
extern DWORD tlsThreadData;