Merge branch 'master' into config-checks-ipv6
[mono.git] / mcs / class / corlib / Microsoft.Win32 / Win32ResultCode.cs
index 93c1a6fd6331f2626389744c58f30d911d8656e2..57da53e296383148f925609e8d1f0949b953b39e 100644 (file)
@@ -30,6 +30,8 @@
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
+#if WIN_PLATFORM || XAMMAC_4_5
+
 using System;
 using System.Runtime.InteropServices;
 using System.Text;
@@ -50,10 +52,15 @@ namespace Microsoft.Win32
                public const int Success = 0;
                public const int FileNotFound = 2;
                public const int AccessDenied = 5;
+               public const int InvalidHandle = 6;
                public const int InvalidParameter = 87;
                public const int MoreData = 234;
                public const int NetworkPathNotFound = 53;
                public const int NoMoreEntries = 259;
                public const int MarkedForDeletion = 1018;
+               public const int ChildMustBeVolatile = 1021;
        }
 }
+
+#endif // MOBILE
+