OSDN Git Service

コア部分を共通プロジェクト化した
[fooeditengine/FooEditEngine.git] / DotNetTextStore / UnmanagedAPI / WinError.cs
similarity index 97%
rename from Common/DotNetTextStore/UnmanagedAPI/WinError.cs
rename to DotNetTextStore/UnmanagedAPI/WinError.cs
index 4146c44..c353d0e 100644 (file)
@@ -1,50 +1,50 @@
-using System;\r
-using System.Reflection;\r
-using System.Runtime.InteropServices;\r
-using System.Security;\r
-\r
-\r
-namespace DotNetTextStore.UnmanagedAPI.WinError\r
-{\r
-    public static class HRESULT\r
-    {\r
-        /// <summary>i_errorCode が成功した値かどうか調べる。</summary>\r
-        public static bool Succeeded(int i_errorCode)\r
-        {\r
-            return i_errorCode >= 0;\r
-        }\r
-\r
-        /// <summary>\r
-        /// The method was successful.\r
-        /// </summary>\r
-        public const int S_OK = 0;\r
-        /// <summary>\r
-        /// The method was successful.\r
-        /// </summary>\r
-        public const int S_FALSE = 0x00000001;\r
-        /// <summary>\r
-        /// An unspecified error occurred.\r
-        /// </summary>\r
-        public const int E_FAIL = unchecked((int)0x80004005);\r
-        /// <summary>\r
-        /// An invalid parameter was passed to the returning function.\r
-        /// </summary>\r
-        public const int E_INVALIDARG = unchecked((int)0x80070057);\r
-        /// <summary>\r
-        /// The method is not implemented.\r
-        /// </summary>\r
-        public const int E_NOTIMPL = unchecked((int)0x80004001);\r
-        /// <summary>\r
-        ///  The data necessary to complete this operation is not yet available.\r
-        /// </summary>\r
-        public const int E_PENDING = unchecked((int)0x8000000A);\r
-        /// <summary>\r
-        /// There is insufficient disk space to complete operation.\r
-        /// </summary>\r
-        public const int STG_E_MEDIUMFULL = unchecked((int)0x80030070);\r
-        /// <summary>\r
-        /// Attempted to use an object that has ceased to exist.\r
-        /// </summary>\r
-        public const int STG_E_REVERTED = unchecked((int)0x80030102);\r
-    }\r
+using System;
+using System.Reflection;
+using System.Runtime.InteropServices;
+using System.Security;
+
+
+namespace DotNetTextStore.UnmanagedAPI.WinError
+{
+    public static class HRESULT
+    {
+        /// <summary>i_errorCode が成功した値かどうか調べる。</summary>
+        public static bool Succeeded(int i_errorCode)
+        {
+            return i_errorCode >= 0;
+        }
+
+        /// <summary>
+        /// The method was successful.
+        /// </summary>
+        public const int S_OK = 0;
+        /// <summary>
+        /// The method was successful.
+        /// </summary>
+        public const int S_FALSE = 0x00000001;
+        /// <summary>
+        /// An unspecified error occurred.
+        /// </summary>
+        public const int E_FAIL = unchecked((int)0x80004005);
+        /// <summary>
+        /// An invalid parameter was passed to the returning function.
+        /// </summary>
+        public const int E_INVALIDARG = unchecked((int)0x80070057);
+        /// <summary>
+        /// The method is not implemented.
+        /// </summary>
+        public const int E_NOTIMPL = unchecked((int)0x80004001);
+        /// <summary>
+        ///  The data necessary to complete this operation is not yet available.
+        /// </summary>
+        public const int E_PENDING = unchecked((int)0x8000000A);
+        /// <summary>
+        /// There is insufficient disk space to complete operation.
+        /// </summary>
+        public const int STG_E_MEDIUMFULL = unchecked((int)0x80030070);
+        /// <summary>
+        /// Attempted to use an object that has ceased to exist.
+        /// </summary>
+        public const int STG_E_REVERTED = unchecked((int)0x80030102);
+    }
 }
\ No newline at end of file