From: Dinesh Dwivedi Date: Fri, 20 May 2016 08:33:17 +0000 (+0530) Subject: [Storage] Removed unused FileSystemInfo struct X-Git-Tag: submit/tizen/20161214.063015~38 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ecad0c265b23cb1918e9fd0bc75d9f8780f34d93;p=platform%2Fcore%2Fcsapi%2Fsystem.git [Storage] Removed unused FileSystemInfo struct Change-Id: I001d1d0ca12140673de76903653c1bbe0a16b8e6 Signed-off-by: Dinesh Dwivedi --- diff --git a/Tizen.System/Interop/Interop.Storage.cs b/Tizen.System/Interop/Interop.Storage.cs index 094320b..a61688b 100644 --- a/Tizen.System/Interop/Interop.Storage.cs +++ b/Tizen.System/Interop/Interop.Storage.cs @@ -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);