Permalink
Please sign in to comment.
Showing
with
229 additions
and 289 deletions.
- +1 −1 BuildToolsVersion.txt
- +8 −1 src/mscorlib/System.Private.CoreLib.csproj
- +71 −0 src/mscorlib/corefx/Interop/Windows/Interop.Errors.cs
- +3 −3 src/mscorlib/corefx/Interop/Windows/{mincore → kernel32}/Interop.CancelIoEx.cs
- +2 −2 src/mscorlib/corefx/Interop/Windows/{mincore → kernel32}/Interop.CloseHandle.cs
- +2 −2 src/mscorlib/corefx/Interop/Windows/{mincore → kernel32}/Interop.CreateFile.cs
- +1 −1 src/mscorlib/corefx/Interop/Windows/{mincore → kernel32}/Interop.FileOperations.cs
- +1 −1 src/mscorlib/corefx/Interop/Windows/{mincore → kernel32}/Interop.FileTypes.cs
- +2 −2 src/mscorlib/corefx/Interop/Windows/{mincore → kernel32}/Interop.FlushFileBuffers.cs
- +2 −2 src/mscorlib/corefx/Interop/Windows/{mincore → kernel32}/Interop.FormatMessage.cs
- +2 −2 src/mscorlib/corefx/Interop/Windows/{mincore → kernel32}/Interop.GetFileInformationByHandleEx.cs
- +2 −2 src/mscorlib/corefx/Interop/Windows/{mincore → kernel32}/Interop.GetFileType_SafeHandle.cs
- +2 −2 src/mscorlib/corefx/Interop/Windows/{mincore → kernel32}/Interop.GetFullPathNameW.cs
- +2 −2 src/mscorlib/corefx/Interop/Windows/{mincore → kernel32}/Interop.GetLongPathNameW.cs
- +2 −2 src/mscorlib/corefx/Interop/Windows/{mincore → kernel32}/Interop.GetTempFileNameW.cs
- +2 −2 src/mscorlib/corefx/Interop/Windows/{mincore → kernel32}/Interop.GetTempPathW.cs
- +3 −3 src/mscorlib/corefx/Interop/Windows/{mincore → kernel32}/Interop.LockFile.cs
- +3 −3 src/mscorlib/corefx/Interop/Windows/{mincore → kernel32}/Interop.ReadFile_SafeHandle_IntPtr.cs
- +3 −3 ...orlib/corefx/Interop/Windows/{mincore → kernel32}/Interop.ReadFile_SafeHandle_NativeOverlapped.cs
- +1 −1 src/mscorlib/corefx/Interop/Windows/{mincore → kernel32}/Interop.SECURITY_ATTRIBUTES.cs
- +4 −4 src/mscorlib/corefx/Interop/Windows/{mincore → kernel32}/Interop.SafeCreateFile.cs
- +1 −1 src/mscorlib/corefx/Interop/Windows/{mincore → kernel32}/Interop.SecurityOptions.cs
- +2 −2 src/mscorlib/corefx/Interop/Windows/{mincore → kernel32}/Interop.SetEndOfFile.cs
- +2 −2 src/mscorlib/corefx/Interop/Windows/{mincore → kernel32}/Interop.SetErrorMode.cs
- +3 −3 src/mscorlib/corefx/Interop/Windows/{mincore → kernel32}/Interop.SetFileInformationByHandle.cs
- +2 −2 src/mscorlib/corefx/Interop/Windows/{mincore → kernel32}/Interop.SetFilePointerEx.cs
- +2 −2 src/mscorlib/corefx/Interop/Windows/{mincore → kernel32}/Interop.UnsafeCreateFile.cs
- +2 −2 src/mscorlib/corefx/Interop/Windows/{mincore → kernel32}/Interop.WideCharToMultiByte.cs
- +3 −3 src/mscorlib/corefx/Interop/Windows/{mincore → kernel32}/Interop.WriteFile_SafeHandle_IntPtr.cs
- +3 −3 ...rlib/corefx/Interop/Windows/{mincore → kernel32}/Interop.WriteFile_SafeHandle_NativeOverlapped.cs
- +0 −74 src/mscorlib/corefx/Interop/Windows/mincore/Interop.Errors.cs
- +0 −37 src/mscorlib/corefx/Interop/Windows/mincore/Interop.Idna.cs
- +0 −27 src/mscorlib/corefx/Interop/Windows/mincore/Interop.ThreadPoolIO.cs
- +1 −1 src/mscorlib/corefx/Microsoft/Win32/SafeHandles/SafeFileHandle.Windows.cs
- +36 −36 src/mscorlib/corefx/System/IO/FileStream.Win32.cs
- +3 −3 src/mscorlib/corefx/System/IO/FileStreamCompletionSource.Win32.cs
- +2 −2 src/mscorlib/corefx/System/IO/Path.Windows.cs
- +5 −5 src/mscorlib/corefx/System/IO/PathHelper.Windows.cs
- +10 −10 src/mscorlib/corefx/System/IO/Win32Marshal.cs
- +4 −4 src/mscorlib/corefx/System/Security/SecureString.Windows.cs
- +28 −28 src/mscorlib/mscorlib.shared.sources.props
- +1 −1 src/mscorlib/src/System/Runtime/InteropServices/WindowsRuntime/NativeMethods.cs
| @@ -1 +1 @@ | ||
| -1.0.27-prerelease-01205-03 | ||
| +1.0.27-prerelease-01209-01 |
| @@ -0,0 +1,71 @@ | ||
| +// Licensed to the .NET Foundation under one or more agreements. | ||
| +// The .NET Foundation licenses this file to you under the MIT license. | ||
| +// See the LICENSE file in the project root for more information. | ||
| + | ||
| +internal partial class Interop | ||
| +{ | ||
| + internal partial class Errors | ||
| + { | ||
| + internal const int ERROR_SUCCESS = 0x0; | ||
| + internal const int ERROR_INVALID_FUNCTION = 0x1; | ||
| + internal const int ERROR_FILE_NOT_FOUND = 0x2; | ||
| + internal const int ERROR_PATH_NOT_FOUND = 0x3; | ||
| + internal const int ERROR_ACCESS_DENIED = 0x5; | ||
| + internal const int ERROR_INVALID_HANDLE = 0x6; | ||
| + internal const int ERROR_NOT_ENOUGH_MEMORY = 0x8; | ||
| + internal const int ERROR_INVALID_DATA = 0xD; | ||
| + internal const int ERROR_INVALID_DRIVE = 0xF; | ||
| + internal const int ERROR_NO_MORE_FILES = 0x12; | ||
| + internal const int ERROR_NOT_READY = 0x15; | ||
| + internal const int ERROR_BAD_LENGTH = 0x18; | ||
| + internal const int ERROR_SHARING_VIOLATION = 0x20; | ||
| + internal const int ERROR_LOCK_VIOLATION = 0x21; | ||
| + internal const int ERROR_HANDLE_EOF = 0x26; | ||
| + internal const int ERROR_FILE_EXISTS = 0x50; | ||
| + internal const int ERROR_INVALID_PARAMETER = 0x57; | ||
| + internal const int ERROR_BROKEN_PIPE = 0x6D; | ||
| + internal const int ERROR_INSUFFICIENT_BUFFER = 0x7A; | ||
| + internal const int ERROR_INVALID_NAME = 0x7B; | ||
| + internal const int ERROR_NEGATIVE_SEEK = 0x83; | ||
| + internal const int ERROR_DIR_NOT_EMPTY = 0x91; | ||
| + internal const int ERROR_BAD_PATHNAME = 0xA1; | ||
| + internal const int ERROR_LOCK_FAILED = 0xA7; | ||
| + internal const int ERROR_BUSY = 0xAA; | ||
| + internal const int ERROR_ALREADY_EXISTS = 0xB7; | ||
| + internal const int ERROR_BAD_EXE_FORMAT = 0xC1; | ||
| + internal const int ERROR_ENVVAR_NOT_FOUND = 0xCB; | ||
| + internal const int ERROR_FILENAME_EXCED_RANGE = 0xCE; | ||
| + internal const int ERROR_EXE_MACHINE_TYPE_MISMATCH = 0xD8; | ||
| + internal const int ERROR_PIPE_BUSY = 0xE7; | ||
| + internal const int ERROR_NO_DATA = 0xE8; | ||
| + internal const int ERROR_PIPE_NOT_CONNECTED = 0xE9; | ||
| + internal const int ERROR_MORE_DATA = 0xEA; | ||
| + internal const int ERROR_NO_MORE_ITEMS = 0x103; | ||
| + internal const int ERROR_PARTIAL_COPY = 0x12B; | ||
| + internal const int ERROR_ARITHMETIC_OVERFLOW = 0x216; | ||
| + internal const int ERROR_PIPE_CONNECTED = 0x217; | ||
| + internal const int ERROR_PIPE_LISTENING = 0x218; | ||
| + internal const int ERROR_OPERATION_ABORTED = 0x3E3; | ||
| + internal const int ERROR_IO_PENDING = 0x3E5; | ||
| + internal const int ERROR_NO_TOKEN = 0x3f0; | ||
| + internal const int ERROR_DLL_INIT_FAILED = 0x45A; | ||
| + internal const int ERROR_NOT_FOUND = 0x490; | ||
| + internal const int ERROR_NON_ACCOUNT_SID = 0x4E9; | ||
| + internal const int ERROR_NOT_ALL_ASSIGNED = 0x514; | ||
| + internal const int ERROR_UNKNOWN_REVISION = 0x519; | ||
| + internal const int ERROR_INVALID_OWNER = 0x51B; | ||
| + internal const int ERROR_INVALID_PRIMARY_GROUP = 0x51C; | ||
| + internal const int ERROR_NO_SUCH_PRIVILEGE = 0x521; | ||
| + internal const int ERROR_PRIVILEGE_NOT_HELD = 0x522; | ||
| + internal const int ERROR_INVALID_ACL = 0x538; | ||
| + internal const int ERROR_INVALID_SECURITY_DESCR = 0x53A; | ||
| + internal const int ERROR_INVALID_SID = 0x539; | ||
| + internal const int ERROR_BAD_IMPERSONATION_LEVEL = 0x542; | ||
| + internal const int ERROR_CANT_OPEN_ANONYMOUS = 0x543; | ||
| + internal const int ERROR_NO_SECURITY_ON_OBJECT = 0x546; | ||
| + internal const int ERROR_TRUSTED_RELATIONSHIP_FAILURE = 0x6FD; | ||
| + internal const int ERROR_RESOURCE_LANG_NOT_FOUND = 0x717; | ||
| + internal const int EFail = unchecked((int)0x80004005); | ||
| + internal const int E_FILENOTFOUND = unchecked((int)0x80070002); | ||
| + } | ||
| +} |
Oops, something went wrong.
0 comments on commit
b2c6ab7