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.

39 lines
875 B

  1. /*
  2. * Strings share with other modules:
  3. */
  4. #define NETDDE_TITLE "NetDDE"
  5. #define NETDDE_CLASS "NetDDEMainWdw"
  6. typedef struct _THREADDATA {
  7. struct _THREADDATA *ptdNext;
  8. HWINSTA hwinsta;
  9. HDESK hdesk;
  10. HWND hwndDDE;
  11. HWND hwndDDEAgent;
  12. HANDLE heventReady;
  13. DWORD dwThreadId;
  14. BOOL bInitiating;
  15. } THREADDATA, *PTHREADDATA;
  16. typedef struct _IPCINIT {
  17. HDDER hDder;
  18. LPDDEPKT lpDdePkt;
  19. BOOL bStartApp;
  20. LPSTR lpszCmdLine;
  21. WORD dd_type;
  22. } IPCINIT, *PIPCINIT;
  23. typedef struct _IPCXMIT {
  24. HIPC hIpc;
  25. HDDER hDder;
  26. LPDDEPKT lpDdePkt;
  27. } IPCXMIT, *PIPCXMIT;
  28. extern PTHREADDATA ptdHead;
  29. extern UINT wMsgIpcXmit;
  30. extern UINT wMsgDoTerminate;
  31. extern DWORD tlsThreadData;
  32.