1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
-
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Runtime.InteropServices;
- namespace ANT_Managed_Library.ANTFS
- {
-
-
-
- [StructLayout(LayoutKind.Sequential)]
- public struct ANTFS_DownloadParameters
- {
-
-
-
- public ushort FileIndex;
-
-
-
- public uint MaxBlockSize;
- }
-
-
-
- [StructLayout(LayoutKind.Sequential)]
- public struct ANTFS_UploadParameters
- {
-
-
-
- public ushort FileIndex;
-
-
-
- public uint MaxFileSize;
-
-
-
- public uint MaxBlockSize;
- }
- }
|