init lserp cs 5.0
This commit is contained in:
@@ -0,0 +1,68 @@
|
||||
//
|
||||
// This file manually written from cef/include/internal/cef_types.h.
|
||||
// C API name: cef_handler_errorcode_t.
|
||||
//
|
||||
namespace Cef3
|
||||
{
|
||||
/// <summary>
|
||||
/// Supported error code values.
|
||||
/// </summary>
|
||||
public enum CefErrorCode
|
||||
{
|
||||
None = 0,
|
||||
|
||||
Failed = -2,
|
||||
Aborted = -3,
|
||||
InvalidArgument = -4,
|
||||
InvalidHandle = -5,
|
||||
FileNotFound = -6,
|
||||
TimedOut = -7,
|
||||
FileTooBig = -8,
|
||||
Unexpected = -9,
|
||||
AccessDenied = -10,
|
||||
NotImplemented = -11,
|
||||
|
||||
ConnectionClosed = -100,
|
||||
ConnectionReset = -101,
|
||||
ConnectionRefused = -102,
|
||||
ConnectionAborted = -103,
|
||||
ConnectionFailed = -104,
|
||||
NameNotResolved = -105,
|
||||
InternetDisconnected = -106,
|
||||
SslProtocolError = -107,
|
||||
AddressInvalid = -108,
|
||||
AddressUnreachable = -109,
|
||||
SslClientAuthCertNeeded = -110,
|
||||
TunnelConnectionFailed = -111,
|
||||
NoSslVersionsEnabled = -112,
|
||||
SslVersionOrCipherMismatch = -113,
|
||||
SslRenegotiationRequested = -114,
|
||||
|
||||
CertCommonNameInvalid = -200,
|
||||
CertDateInvalid = -201,
|
||||
CertAuthorityInvalid = -202,
|
||||
CertContainsErrors = -203,
|
||||
CertNoRevocationMechanism = -204,
|
||||
CertUnableToCheckRevocation = -205,
|
||||
CertRevoked = -206,
|
||||
CertInvalid = -207,
|
||||
CertEnd = -208,
|
||||
|
||||
InvalidUrl = -300,
|
||||
DisallowedUrlScheme = -301,
|
||||
UnknownUrlScheme = -302,
|
||||
TooManyRedirects = -310,
|
||||
UnsafeRedirect = -311,
|
||||
UnsafePort = -312,
|
||||
InvalidResponse = -320,
|
||||
InvalidChunkedEncoding = -321,
|
||||
MethodNotSupported = -322,
|
||||
UnexpectedProxyAuth = -323,
|
||||
EmptyResponse = -324,
|
||||
ResponseHeadersTooBig = -325,
|
||||
|
||||
CacheMiss = -400,
|
||||
|
||||
InsecureResponse = -501,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user