12345678910111213141516171819202122232425262728293031323334353637383940414243 |
-
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Runtime.InteropServices;
- namespace ANT_Managed_Library.ANTFS
- {
-
-
-
- [StructLayout(LayoutKind.Sequential, Pack=1)]
- public struct ANTFS_ConfigParameters
- {
-
-
-
- public uint CfgAuthTimeout;
-
-
-
- public uint CfgEraseTimeout;
-
-
-
- public uint CfgUploadRequestTimeout;
-
-
-
- public uint CfgUploadResponseTimeout;
-
-
-
- public uint CfgBurstCheckTimeout;
- }
- }
|