Leaked source code of windows server 2003
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.

73 lines
1.6 KiB

  1. /* C:\WACKER\TDLL\XFDSPDLG.HH (Created: 10-Jan-1994)
  2. * Created from:
  3. * s_r_dlg.h - various stuff used in sends and recieves
  4. *
  5. * Copyright 1994 by Hilgraeve, Inc -- Monroe, MI
  6. * All rights reserved
  7. *
  8. * $Revision: 2 $
  9. * $Date: 5/04/01 3:36p $
  10. */
  11. /*
  12. * This data is getting moved into the structure in xfer_msc.hh. It is here
  13. * only as a transitional device.
  14. */
  15. struct stReceiveDisplayRecord
  16. {
  17. /*
  18. * First, we have the bit flags indicating which fields have changed
  19. */
  20. int bChecktype : 1;
  21. int bErrorCnt : 1;
  22. int bPcktErrCnt : 1;
  23. int bLastErrtype : 1;
  24. int bVirScan : 1;
  25. int bTotalSize : 1;
  26. int bTotalSoFar : 1;
  27. int bFileSize : 1;
  28. int bFileSoFar : 1;
  29. int bPacketNumber : 1;
  30. int bTotalCnt : 1;
  31. int bFileCnt : 1;
  32. int bEvent : 1;
  33. int bStatus : 1;
  34. int bElapsedTime : 1;
  35. int bRemainingTime : 1;
  36. int bThroughput : 1;
  37. int bProtocol : 1;
  38. int bMessage : 1;
  39. int bOurName : 1;
  40. int bTheirName : 1;
  41. /*
  42. * Then, we have the data fields themselves
  43. */
  44. int wChecktype; /* Added for XMODEM */
  45. int wErrorCnt;
  46. int wPcktErrCnt; /* Added for XMODEM */
  47. int wLastErrtype; /* Added for XMODEM */
  48. int wVirScan;
  49. long lTotalSize;
  50. long lTotalSoFar;
  51. long lFileSize;
  52. long lFileSoFar;
  53. long lPacketNumber; /* Added for XMODEM */
  54. int wTotalCnt;
  55. int wFileCnt;
  56. int wEvent;
  57. int wStatus;
  58. long lElapsedTime;
  59. long lRemainingTime;
  60. long lThroughput;
  61. int uProtocol;
  62. TCHAR acMessage[80];
  63. TCHAR acOurName[256];
  64. TCHAR acTheirName[256];
  65. };
  66. typedef struct stReceiveDisplayRecord sRD;
  67. typedef sRD FAR *psRD;