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.
39 lines
914 B
39 lines
914 B
|
|
/*
|
|
* 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;
|
|
|