[Storage] Removed unused FileSystemInfo struct
authorDinesh Dwivedi <dinesh.d@samsung.com>
Fri, 20 May 2016 08:33:17 +0000 (14:03 +0530)
committerDinesh Dwivedi <dinesh.d@samsung.com>
Fri, 20 May 2016 08:33:17 +0000 (14:03 +0530)
Change-Id: I001d1d0ca12140673de76903653c1bbe0a16b8e6
Signed-off-by: Dinesh Dwivedi <dinesh.d@samsung.com>
Tizen.System/Interop/Interop.Storage.cs

index 094320b..a61688b 100644 (file)
@@ -79,19 +79,6 @@ internal static partial class Interop
         [DllImport(Libraries.Storage, EntryPoint = "storage_get_available_space")]
         internal static extern ErrorCode StorageGetAvailableSpace(int id, out ulong bytes);
 
-        [StructLayout(LayoutKind.Sequential)]
-        public struct FileSystemInfo
-        {
-            public uint BlockSize;
-            public uint FragmentSize;
-            public uint BlockCount;
-            public uint FreeBlocks;
-            public uint BlockAvailable;
-
-            [MarshalAs(UnmanagedType.ByValArray, SizeConst = 14)]
-            public uint[] vals;
-        }
-
         [UnmanagedFunctionPointerAttribute(CallingConvention.Cdecl)]
         internal delegate bool StorageDeviceSupportedCallback(int storageID, StorageArea type, StorageState state, string rootDirectory, IntPtr userData);