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.

63 lines
1.5 KiB

  1. #ifndef _PRECOMP_H_
  2. #define _PRECOMP_H_
  3. #include <windows.h>
  4. #include <databeam.h>
  5. extern "C"
  6. {
  7. #include "t120.h"
  8. }
  9. #include <memtrack.h>
  10. #include "iplgxprt.h"
  11. #include "fsdiag2.h"
  12. #include "slist2.h"
  13. #include "hash2.h"
  14. #include "object2.h"
  15. #include "memory2.h" // mcattprt.h needs it
  16. #include "memmgr2.h"
  17. #include "mcattprt.h"
  18. #include "imst123.h"
  19. #include "protocol.h"
  20. #include "timer.h"
  21. #include "framer.h"
  22. #include "crc.h"
  23. #include "random.h"
  24. class CTransportInterface;
  25. class TransportController;
  26. class T123;
  27. class CLayerX224;
  28. class CLayerSCF;
  29. class CLayerQ922;
  30. class Multiplexer;
  31. class ComPort;
  32. #include "tprtcore.h"
  33. #include "tprtintf.h"
  34. #include "t123.h"
  35. #include "comport.h"
  36. extern HINSTANCE g_hDllInst;
  37. extern CTransportInterface *g_pTransportInterface;
  38. extern CRITICAL_SECTION g_csPSTN;
  39. extern Timer *g_pSystemTimer;
  40. extern TransportController *g_pController;
  41. extern HANDLE g_hWorkerThread;
  42. extern DWORD g_dwWorkerThreadID;
  43. extern HANDLE g_hWorkerThreadEvent;
  44. extern HANDLE g_hThreadTerminateEvent;
  45. extern DictionaryClass *g_pComPortList2;
  46. extern SListClass *g_pPSTNEventList;
  47. extern TransportCallback g_pfnT120Notify;
  48. extern void *g_pUserData;
  49. extern BOOL g_fEventListChanged;
  50. // #undef TRACE_OUT
  51. // #define TRACE_OUT WARNING_OUT
  52. #endif /* _PRECOMP_H_ */