2005-08-30 Sebastien Pouliot <sebastien@ximian.com>
[mono.git] / mcs / class / corlib / System.Runtime.InteropServices / STATSTG.cs
index 0f59c8afd12b53b2e24953b0c9669a91cdae8176..04f6f8d75a480345e6903a44184eba834f6987b5 100644 (file)
 
 namespace System.Runtime.InteropServices
 {
-       [ComVisible (false)]
-       [StructLayout (LayoutKind.Sequential, CharSet = CharSet.Unicode)]
+#if NET_2_0
+       [Obsolete]
+#endif
+       [ComVisible(false)]
+       [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
        public struct STATSTG
        {
-               public FILETIME atime;
+               public string pwcsName;
+               public int type;
                public long cbSize;
-               public Guid clsid;
+               public FILETIME mtime;
                public FILETIME ctime;
-               public int grfLocksSupported;
+               public FILETIME atime;
                public int grfMode;
+               public int grfLocksSupported;
+               public Guid clsid;
                public int grfStateBits;
-               public FILETIME mtime;
-               public string pwcsName;
                public int reserved;
-               public int type;
        }
+
 }