File size: 663 Bytes
8c763fb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | // Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#nullable enable
internal static partial class Interop
{
internal static partial class Windows
{
// List of error constants https://learn.microsoft.com/en-us/windows/win32/debug/system-error-codes
internal const int ERROR_SUCCESS = 0;
internal const int ERROR_FILE_NOT_FOUND = 2;
internal const int ERROR_GEN_FAILURE = 31;
internal const int ERROR_NOT_SUPPORTED = 50;
internal const int ERROR_NO_NETWORK = 1222;
internal const int ERROR_MORE_DATA = 234;
internal const int ERROR_CONNECTION_UNAVAIL = 1201;
}
}
|