ANTFS_ConfigParameters.cs 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /*
  2. This software is subject to the license described in the License.txt file
  3. included with this software distribution. You may not use this file except
  4. in compliance with this license.
  5. Copyright (c) Dynastream Innovations Inc. 2016
  6. All rights reserved.
  7. */
  8. using System;
  9. using System.Collections.Generic;
  10. using System.Text;
  11. using System.Runtime.InteropServices;
  12. namespace ANT_Managed_Library.ANTFS
  13. {
  14. /// <summary>
  15. /// ANT-FS Configuration Parameters
  16. /// </summary>
  17. [StructLayout(LayoutKind.Sequential, Pack=1)]
  18. public struct ANTFS_ConfigParameters
  19. {
  20. /// <summary>
  21. /// Authentication Timeout
  22. /// </summary>
  23. public uint CfgAuthTimeout;
  24. /// <summary>
  25. /// Erase Timeout
  26. /// </summary>
  27. public uint CfgEraseTimeout;
  28. /// <summary>
  29. /// Upload Request Timeout
  30. /// </summary>
  31. public uint CfgUploadRequestTimeout;
  32. /// <summary>
  33. /// Upload Response Timeout
  34. /// </summary>
  35. public uint CfgUploadResponseTimeout;
  36. /// <summary>
  37. /// Burst Check Timeout
  38. /// </summary>
  39. public uint CfgBurstCheckTimeout;
  40. }
  41. }