pub struct HRESULT(/* private fields */);
kernel
and ole
only.Expand description
A native
COM error code
(u32
), which can be considered a superset of
ERROR
.
The Result
alias for this type is
HrResult
.
Implements the standard Error
trait.
Implements the Debug
and
Display
traits to show the error code along with
the error description, taken from
FormattedError
trait. For example,
the code below:
use winsafe::{self as w, prelude::*, co};
println!("{}", co::HRESULT::E_INVALIDARG);
Will print:
[0x80070057 2147942487] The parameter is incorrect.
The numbers inside the brackets are the system error code, in hexadecimal and decimal formats for convenience.
An ERROR
can be seamlessly converted into an
HRESULT
. This operation is equivalent to the
HRESULT_FROM_WIN32
macro:
use winsafe::{self as w, prelude::*, co};
let err = co::ERROR::FILE_NOT_FOUND;
let hr = err.to_hresult();
Implementations§
Source§impl HRESULT
impl HRESULT
pub const VFW_E_INVALIDMEDIATYPE: Self
dshow
only.pub const VFW_E_INVALIDSUBTYPE: Self
dshow
only.pub const VFW_E_NEED_OWNER: Self
dshow
only.pub const VFW_E_ENUM_OUT_OF_SYNC: Self
dshow
only.pub const VFW_E_ALREADY_CONNECTED: Self
dshow
only.pub const VFW_E_FILTER_ACTIVE: Self
dshow
only.pub const VFW_E_NO_TYPES: Self
dshow
only.pub const VFW_E_NO_ACCEPTABLE_TYPES: Self
dshow
only.pub const VFW_E_INVALID_DIRECTION: Self
dshow
only.pub const VFW_E_NOT_CONNECTED: Self
dshow
only.pub const VFW_E_NO_ALLOCATOR: Self
dshow
only.pub const VFW_E_RUNTIME_ERROR: Self
dshow
only.pub const VFW_E_BUFFER_NOTSET: Self
dshow
only.pub const VFW_E_BUFFER_OVERFLOW: Self
dshow
only.pub const VFW_E_BADALIGN: Self
dshow
only.pub const VFW_E_ALREADY_COMMITTED: Self
dshow
only.pub const VFW_E_BUFFERS_OUTSTANDING: Self
dshow
only.pub const VFW_E_NOT_COMMITTED: Self
dshow
only.pub const VFW_E_SIZENOTSET: Self
dshow
only.pub const VFW_E_NO_CLOCK: Self
dshow
only.pub const VFW_E_NO_SINK: Self
dshow
only.pub const VFW_E_NO_INTERFACE: Self
dshow
only.pub const VFW_E_NOT_FOUND: Self
dshow
only.pub const VFW_E_CANNOT_CONNECT: Self
dshow
only.pub const VFW_E_CANNOT_RENDER: Self
dshow
only.pub const VFW_E_CHANGING_FORMAT: Self
dshow
only.pub const VFW_E_NO_COLOR_KEY_SET: Self
dshow
only.pub const VFW_E_NOT_OVERLAY_CONNECTION: Self
dshow
only.pub const VFW_E_NOT_SAMPLE_CONNECTION: Self
dshow
only.pub const VFW_E_PALETTE_SET: Self
dshow
only.pub const VFW_E_COLOR_KEY_SET: Self
dshow
only.pub const VFW_E_NO_COLOR_KEY_FOUND: Self
dshow
only.pub const VFW_E_NO_PALETTE_AVAILABLE: Self
dshow
only.pub const VFW_E_NO_DISPLAY_PALETTE: Self
dshow
only.pub const VFW_E_TOO_MANY_COLORS: Self
dshow
only.pub const VFW_E_STATE_CHANGED: Self
dshow
only.pub const VFW_E_NOT_STOPPED: Self
dshow
only.pub const VFW_E_NOT_PAUSED: Self
dshow
only.pub const VFW_E_NOT_RUNNING: Self
dshow
only.pub const VFW_E_WRONG_STATE: Self
dshow
only.pub const VFW_E_START_TIME_AFTER_END: Self
dshow
only.pub const VFW_E_INVALID_RECT: Self
dshow
only.pub const VFW_E_TYPE_NOT_ACCEPTED: Self
dshow
only.pub const VFW_E_SAMPLE_REJECTED: Self
dshow
only.pub const VFW_E_SAMPLE_REJECTED_EOS: Self
dshow
only.pub const VFW_E_DUPLICATE_NAME: Self
dshow
only.pub const VFW_S_DUPLICATE_NAME: Self
dshow
only.pub const VFW_E_TIMEOUT: Self
dshow
only.pub const VFW_E_INVALID_FILE_FORMAT: Self
dshow
only.pub const VFW_E_ENUM_OUT_OF_RANGE: Self
dshow
only.pub const VFW_E_CIRCULAR_GRAPH: Self
dshow
only.pub const VFW_E_NOT_ALLOWED_TO_SAVE: Self
dshow
only.pub const VFW_E_TIME_ALREADY_PASSED: Self
dshow
only.pub const VFW_E_ALREADY_CANCELLED: Self
dshow
only.pub const VFW_E_CORRUPT_GRAPH_FILE: Self
dshow
only.pub const VFW_E_ADVISE_ALREADY_SET: Self
dshow
only.pub const VFW_S_STATE_INTERMEDIATE: Self
dshow
only.pub const VFW_E_NO_MODEX_AVAILABLE: Self
dshow
only.pub const VFW_E_NO_ADVISE_SET: Self
dshow
only.pub const VFW_E_NO_FULLSCREEN: Self
dshow
only.pub const VFW_E_IN_FULLSCREEN_MODE: Self
dshow
only.pub const VFW_E_UNKNOWN_FILE_TYPE: Self
dshow
only.pub const VFW_E_CANNOT_LOAD_SOURCE_FILTER: Self
dshow
only.pub const VFW_S_PARTIAL_RENDER: Self
dshow
only.pub const VFW_E_FILE_TOO_SHORT: Self
dshow
only.pub const VFW_E_INVALID_FILE_VERSION: Self
dshow
only.pub const VFW_S_SOME_DATA_IGNORED: Self
dshow
only.pub const VFW_S_CONNECTIONS_DEFERRED: Self
dshow
only.pub const VFW_E_INVALID_CLSID: Self
dshow
only.pub const VFW_E_INVALID_MEDIA_TYPE: Self
dshow
only.pub const VFW_E_BAD_KEY: Self
dshow
only.pub const VFW_S_NO_MORE_ITEMS: Self
dshow
only.pub const VFW_E_SAMPLE_TIME_NOT_SET: Self
dshow
only.pub const VFW_S_RESOURCE_NOT_NEEDED: Self
dshow
only.pub const VFW_E_MEDIA_TIME_NOT_SET: Self
dshow
only.pub const VFW_E_NO_TIME_FORMAT_SET: Self
dshow
only.pub const VFW_E_MONO_AUDIO_HW: Self
dshow
only.pub const VFW_S_MEDIA_TYPE_IGNORED: Self
dshow
only.pub const VFW_E_NO_DECOMPRESSOR: Self
dshow
only.pub const VFW_E_NO_AUDIO_HARDWARE: Self
dshow
only.pub const VFW_S_VIDEO_NOT_RENDERED: Self
dshow
only.pub const VFW_S_AUDIO_NOT_RENDERED: Self
dshow
only.pub const VFW_E_RPZA: Self
dshow
only.pub const VFW_S_RPZA: Self
dshow
only.pub const VFW_E_PROCESSOR_NOT_SUITABLE: Self
dshow
only.pub const VFW_E_UNSUPPORTED_AUDIO: Self
dshow
only.pub const VFW_E_UNSUPPORTED_VIDEO: Self
dshow
only.pub const VFW_E_MPEG_NOT_CONSTRAINED: Self
dshow
only.pub const VFW_E_NOT_IN_GRAPH: Self
dshow
only.pub const VFW_S_ESTIMATED: Self
dshow
only.pub const VFW_E_NO_TIME_FORMAT: Self
dshow
only.pub const VFW_E_READ_ONLY: Self
dshow
only.pub const VFW_S_RESERVED: Self
dshow
only.pub const VFW_E_BUFFER_UNDERFLOW: Self
dshow
only.pub const VFW_E_UNSUPPORTED_STREAM: Self
dshow
only.pub const VFW_E_NO_TRANSPORT: Self
dshow
only.pub const VFW_S_STREAM_OFF: Self
dshow
only.pub const VFW_S_CANT_CUE: Self
dshow
only.pub const VFW_E_BAD_VIDEOCD: Self
dshow
only.pub const VFW_S_NO_STOP_TIME: Self
dshow
only.pub const VFW_E_OUT_OF_VIDEO_MEMORY: Self
dshow
only.pub const VFW_E_VP_NEGOTIATION_FAILED: Self
dshow
only.pub const VFW_E_DDRAW_CAPS_NOT_SUITABLE: Self
dshow
only.pub const VFW_E_NO_VP_HARDWARE: Self
dshow
only.pub const VFW_E_NO_CAPTURE_HARDWARE: Self
dshow
only.pub const VFW_E_DVD_OPERATION_INHIBITED: Self
dshow
only.pub const VFW_E_DVD_INVALIDDOMAIN: Self
dshow
only.pub const VFW_E_DVD_NO_BUTTON: Self
dshow
only.pub const VFW_E_DVD_GRAPHNOTREADY: Self
dshow
only.pub const VFW_E_DVD_RENDERFAIL: Self
dshow
only.pub const VFW_E_DVD_DECNOTENOUGH: Self
dshow
only.pub const VFW_E_DDRAW_VERSION_NOT_SUITABLE: Self
dshow
only.pub const VFW_E_COPYPROT_FAILED: Self
dshow
only.pub const VFW_S_NOPREVIEWPIN: Self
dshow
only.pub const VFW_E_TIME_EXPIRED: Self
dshow
only.pub const VFW_S_DVD_NON_ONE_SEQUENTIAL: Self
dshow
only.pub const VFW_E_DVD_WRONG_SPEED: Self
dshow
only.pub const VFW_E_DVD_MENU_DOES_NOT_EXIST: Self
dshow
only.pub const VFW_E_DVD_CMD_CANCELLED: Self
dshow
only.pub const VFW_E_DVD_STATE_WRONG_VERSION: Self
dshow
only.pub const VFW_E_DVD_STATE_CORRUPT: Self
dshow
only.pub const VFW_E_DVD_STATE_WRONG_DISC: Self
dshow
only.pub const VFW_E_DVD_INCOMPATIBLE_REGION: Self
dshow
only.pub const VFW_E_DVD_NO_ATTRIBUTES: Self
dshow
only.pub const VFW_E_DVD_NO_GOUP_PGC: Self
dshow
only.pub const VFW_E_DVD_LOW_PARENTAL_LEVEL: Self
dshow
only.pub const VFW_E_DVD_NOT_IN_KARAOKE_MODE: Self
dshow
only.pub const VFW_S_DVD_CHANNEL_CONTENTS_NOT_AVAILABLE: Self
dshow
only.pub const VFW_S_DVD_NOT_ACCURATE: Self
dshow
only.pub const VFW_E_FRAME_STEP_UNSUPPORTED: Self
dshow
only.pub const VFW_E_DVD_STREAM_DISABLED: Self
dshow
only.pub const VFW_E_DVD_TITLE_UNKNOWN: Self
dshow
only.pub const VFW_E_DVD_INVALID_DISC: Self
dshow
only.pub const VFW_E_DVD_NO_RESUME_INFORMATION: Self
dshow
only.pub const VFW_E_PIN_ALREADY_BLOCKED_ON_THIS_THREAD: Self
dshow
only.pub const VFW_E_PIN_ALREADY_BLOCKED: Self
dshow
only.pub const VFW_E_CERTIFICATION_FAILURE: Self
dshow
only.pub const VFW_E_VMR_NOT_IN_MIXER_MODE: Self
dshow
only.pub const VFW_E_VMR_NO_AP_SUPPLIED: Self
dshow
only.pub const VFW_E_VMR_NO_DEINTERLACE_HW: Self
dshow
only.pub const VFW_E_VMR_NO_PROCAMP_HW: Self
dshow
only.pub const VFW_E_DVD_VMR9_INCOMPATIBLEDEC: Self
dshow
only.pub const VFW_E_NO_COPP_HW: Self
dshow
only.pub const VFW_E_DVD_NONBLOCKING: Self
dshow
only.pub const VFW_E_DVD_TOO_MANY_RENDERERS_IN_FILTER_GRAPH: Self
dshow
only.pub const VFW_E_DVD_NON_EVR_RENDERER_IN_FILTER_GRAPH: Self
dshow
only.pub const VFW_E_DVD_RESOLUTION_ERROR: Self
dshow
only.pub const E_PROP_SET_UNSUPPORTED: Self
dshow
only.pub const E_PROP_ID_UNSUPPORTED: Self
dshow
only.pub const VFW_E_CODECAPI_LINEAR_RANGE: Self
dshow
only.pub const VFW_E_CODECAPI_ENUMERATED: Self
dshow
only.pub const VFW_E_CODECAPI_NO_DEFAULT: Self
dshow
only.pub const VFW_E_CODECAPI_NO_CURRENT_VALUE: Self
dshow
only.pub const VFW_E_DVD_CHAPTER_DOES_NOT_EXIST: Self
dshow
only.pub const VFW_S_DVD_RENDER_STATUS: Self
dshow
only.Source§impl HRESULT
impl HRESULT
pub const DXGI_STATUS_OCCLUDED: Self
dxgi
only.pub const DXGI_STATUS_CLIPPED: Self
dxgi
only.pub const DXGI_STATUS_NO_REDIRECTION: Self
dxgi
only.pub const DXGI_STATUS_NO_DESKTOP_ACCESS: Self
dxgi
only.pub const DXGI_STATUS_GRAPHICS_VIDPN_SOURCE_IN_USE: Self
dxgi
only.pub const DXGI_STATUS_MODE_CHANGED: Self
dxgi
only.pub const DXGI_STATUS_MODE_CHANGE_IN_PROGRESS: Self
dxgi
only.pub const DXGI_ERROR_INVALID_CALL: Self
dxgi
only.pub const DXGI_ERROR_NOT_FOUND: Self
dxgi
only.pub const DXGI_ERROR_MORE_DATA: Self
dxgi
only.pub const DXGI_ERROR_UNSUPPORTED: Self
dxgi
only.pub const DXGI_ERROR_DEVICE_REMOVED: Self
dxgi
only.pub const DXGI_ERROR_DEVICE_HUNG: Self
dxgi
only.pub const DXGI_ERROR_DEVICE_RESET: Self
dxgi
only.pub const DXGI_ERROR_WAS_STILL_DRAWING: Self
dxgi
only.pub const DXGI_ERROR_FRAME_STATISTICS_DISJOINT: Self
dxgi
only.pub const DXGI_ERROR_GRAPHICS_VIDPN_SOURCE_IN_USE: Self
dxgi
only.pub const DXGI_ERROR_DRIVER_INTERNAL_ERROR: Self
dxgi
only.pub const DXGI_ERROR_NONEXCLUSIVE: Self
dxgi
only.pub const DXGI_ERROR_NOT_CURRENTLY_AVAILABLE: Self
dxgi
only.pub const DXGI_ERROR_REMOTE_CLIENT_DISCONNECTED: Self
dxgi
only.pub const DXGI_ERROR_REMOTE_OUTOFMEMORY: Self
dxgi
only.pub const DXGI_ERROR_ACCESS_LOST: Self
dxgi
only.pub const DXGI_ERROR_WAIT_TIMEOUT: Self
dxgi
only.pub const DXGI_ERROR_SESSION_DISCONNECTED: Self
dxgi
only.pub const DXGI_ERROR_RESTRICT_TO_OUTPUT_STALE: Self
dxgi
only.pub const DXGI_ERROR_CANNOT_PROTECT_CONTENT: Self
dxgi
only.pub const DXGI_ERROR_ACCESS_DENIED: Self
dxgi
only.pub const DXGI_ERROR_NAME_ALREADY_EXISTS: Self
dxgi
only.pub const DXGI_ERROR_SDK_COMPONENT_MISSING: Self
dxgi
only.pub const DXGI_ERROR_NOT_CURRENT: Self
dxgi
only.pub const DXGI_ERROR_HW_PROTECTION_OUTOFMEMORY: Self
dxgi
only.pub const DXGI_ERROR_DYNAMIC_CODE_POLICY_VIOLATION: Self
dxgi
only.pub const DXGI_ERROR_NON_COMPOSITED_UI: Self
dxgi
only.pub const DXGI_STATUS_UNOCCLUDED: Self
dxgi
only.pub const DXGI_STATUS_DDA_WAS_STILL_DRAWING: Self
dxgi
only.pub const DXGI_ERROR_MODE_CHANGE_IN_PROGRESS: Self
dxgi
only.pub const DXGI_STATUS_PRESENT_REQUIRED: Self
dxgi
only.pub const DXGI_ERROR_CACHE_CORRUPT: Self
dxgi
only.pub const DXGI_ERROR_CACHE_FULL: Self
dxgi
only.pub const DXGI_ERROR_CACHE_HASH_COLLISION: Self
dxgi
only.pub const DXGI_ERROR_ALREADY_EXISTS: Self
dxgi
only.pub const DXGI_DDI_ERR_WASSTILLDRAWING: Self
dxgi
only.pub const DXGI_DDI_ERR_UNSUPPORTED: Self
dxgi
only.pub const DXGI_DDI_ERR_NONEXCLUSIVE: Self
dxgi
only.Source§impl HRESULT
impl HRESULT
pub const MF_E_PLATFORM_NOT_INITIALIZED: Self
mf
only.pub const MF_E_BUFFERTOOSMALL: Self
mf
only.pub const MF_E_INVALIDREQUEST: Self
mf
only.pub const MF_E_INVALIDSTREAMNUMBER: Self
mf
only.pub const MF_E_INVALIDMEDIATYPE: Self
mf
only.pub const MF_E_NOTACCEPTING: Self
mf
only.pub const MF_E_NOT_INITIALIZED: Self
mf
only.pub const MF_E_UNSUPPORTED_REPRESENTATION: Self
mf
only.pub const MF_E_NO_MORE_TYPES: Self
mf
only.pub const MF_E_UNSUPPORTED_SERVICE: Self
mf
only.pub const MF_E_UNEXPECTED: Self
mf
only.pub const MF_E_INVALIDNAME: Self
mf
only.pub const MF_E_INVALIDTYPE: Self
mf
only.pub const MF_E_INVALID_FILE_FORMAT: Self
mf
only.pub const MF_E_INVALIDINDEX: Self
mf
only.pub const MF_E_INVALID_TIMESTAMP: Self
mf
only.pub const MF_E_UNSUPPORTED_SCHEME: Self
mf
only.pub const MF_E_UNSUPPORTED_BYTESTREAM_TYPE: Self
mf
only.pub const MF_E_UNSUPPORTED_TIME_FORMAT: Self
mf
only.pub const MF_E_NO_SAMPLE_TIMESTAMP: Self
mf
only.pub const MF_E_NO_SAMPLE_DURATION: Self
mf
only.pub const MF_E_INVALID_STREAM_DATA: Self
mf
only.pub const MF_E_RT_UNAVAILABLE: Self
mf
only.pub const MF_E_UNSUPPORTED_RATE: Self
mf
only.pub const MF_E_THINNING_UNSUPPORTED: Self
mf
only.pub const MF_E_REVERSE_UNSUPPORTED: Self
mf
only.pub const MF_E_UNSUPPORTED_RATE_TRANSITION: Self
mf
only.pub const MF_E_RATE_CHANGE_PREEMPTED: Self
mf
only.pub const MF_E_NOT_FOUND: Self
mf
only.pub const MF_E_NOT_AVAILABLE: Self
mf
only.pub const MF_E_NO_CLOCK: Self
mf
only.pub const MF_S_MULTIPLE_BEGIN: Self
mf
only.pub const MF_E_MULTIPLE_BEGIN: Self
mf
only.pub const MF_E_MULTIPLE_SUBSCRIBERS: Self
mf
only.pub const MF_E_TIMER_ORPHANED: Self
mf
only.pub const MF_E_STATE_TRANSITION_PENDING: Self
mf
only.pub const MF_E_UNSUPPORTED_STATE_TRANSITION: Self
mf
only.pub const MF_E_UNRECOVERABLE_ERROR_OCCURRED: Self
mf
only.pub const MF_E_SAMPLE_HAS_TOO_MANY_BUFFERS: Self
mf
only.pub const MF_E_SAMPLE_NOT_WRITABLE: Self
mf
only.pub const MF_E_INVALID_KEY: Self
mf
only.pub const MF_E_BAD_STARTUP_VERSION: Self
mf
only.pub const MF_E_UNSUPPORTED_CAPTION: Self
mf
only.pub const MF_E_INVALID_POSITION: Self
mf
only.pub const MF_E_ATTRIBUTENOTFOUND: Self
mf
only.pub const MF_E_PROPERTY_TYPE_NOT_ALLOWED: Self
mf
only.pub const MF_E_PROPERTY_TYPE_NOT_SUPPORTED: Self
mf
only.pub const MF_E_PROPERTY_EMPTY: Self
mf
only.pub const MF_E_PROPERTY_NOT_EMPTY: Self
mf
only.pub const MF_E_PROPERTY_VECTOR_NOT_ALLOWED: Self
mf
only.pub const MF_E_PROPERTY_VECTOR_REQUIRED: Self
mf
only.pub const MF_E_OPERATION_CANCELLED: Self
mf
only.pub const MF_E_BYTESTREAM_NOT_SEEKABLE: Self
mf
only.pub const MF_E_DISABLED_IN_SAFEMODE: Self
mf
only.pub const MF_E_CANNOT_PARSE_BYTESTREAM: Self
mf
only.pub const MF_E_SOURCERESOLVER_MUTUALLY_EXCLUSIVE_FLAGS: Self
mf
only.pub const MF_E_MEDIAPROC_WRONGSTATE: Self
mf
only.pub const MF_E_RT_THROUGHPUT_NOT_AVAILABLE: Self
mf
only.pub const MF_E_RT_TOO_MANY_CLASSES: Self
mf
only.pub const MF_E_RT_WOULDBLOCK: Self
mf
only.pub const MF_E_NO_BITPUMP: Self
mf
only.pub const MF_E_RT_OUTOFMEMORY: Self
mf
only.pub const MF_E_RT_WORKQUEUE_CLASS_NOT_SPECIFIED: Self
mf
only.pub const MF_E_INSUFFICIENT_BUFFER: Self
mf
only.pub const MF_E_CANNOT_CREATE_SINK: Self
mf
only.pub const MF_E_BYTESTREAM_UNKNOWN_LENGTH: Self
mf
only.pub const MF_E_SESSION_PAUSEWHILESTOPPED: Self
mf
only.pub const MF_S_ACTIVATE_REPLACED: Self
mf
only.pub const MF_E_FORMAT_CHANGE_NOT_SUPPORTED: Self
mf
only.pub const MF_E_INVALID_WORKQUEUE: Self
mf
only.pub const MF_E_DRM_UNSUPPORTED: Self
mf
only.pub const MF_E_UNAUTHORIZED: Self
mf
only.pub const MF_E_OUT_OF_RANGE: Self
mf
only.pub const MF_E_INVALID_CODEC_MERIT: Self
mf
only.pub const MF_E_HW_MFT_FAILED_START_STREAMING: Self
mf
only.pub const MF_E_OPERATION_IN_PROGRESS: Self
mf
only.pub const MF_E_HARDWARE_DRM_UNSUPPORTED: Self
mf
only.pub const MF_E_DURATION_TOO_LONG: Self
mf
only.pub const MF_E_OPERATION_UNSUPPORTED_AT_D3D_FEATURE_LEVEL: Self
mf
only.pub const MF_E_UNSUPPORTED_MEDIATYPE_AT_D3D_FEATURE_LEVEL: Self
mf
only.pub const MF_S_ASF_PARSEINPROGRESS: Self
mf
only.pub const MF_E_ASF_PARSINGINCOMPLETE: Self
mf
only.pub const MF_E_ASF_MISSINGDATA: Self
mf
only.pub const MF_E_ASF_INVALIDDATA: Self
mf
only.pub const MF_E_ASF_OPAQUEPACKET: Self
mf
only.pub const MF_E_ASF_NOINDEX: Self
mf
only.pub const MF_E_ASF_OUTOFRANGE: Self
mf
only.pub const MF_E_ASF_INDEXNOTLOADED: Self
mf
only.pub const MF_E_ASF_TOO_MANY_PAYLOADS: Self
mf
only.pub const MF_E_ASF_UNSUPPORTED_STREAM_TYPE: Self
mf
only.pub const MF_E_ASF_DROPPED_PACKET: Self
mf
only.pub const MF_E_NO_EVENTS_AVAILABLE: Self
mf
only.pub const MF_E_INVALID_STATE_TRANSITION: Self
mf
only.pub const MF_E_END_OF_STREAM: Self
mf
only.pub const MF_E_SHUTDOWN: Self
mf
only.pub const MF_E_MP3_NOTFOUND: Self
mf
only.pub const MF_E_MP3_OUTOFDATA: Self
mf
only.pub const MF_E_MP3_NOTMP3: Self
mf
only.pub const MF_E_MP3_NOTSUPPORTED: Self
mf
only.pub const MF_E_NO_DURATION: Self
mf
only.pub const MF_E_INVALID_FORMAT: Self
mf
only.pub const MF_E_PROPERTY_NOT_FOUND: Self
mf
only.pub const MF_E_PROPERTY_READ_ONLY: Self
mf
only.pub const MF_E_PROPERTY_NOT_ALLOWED: Self
mf
only.pub const MF_E_MEDIA_SOURCE_NOT_STARTED: Self
mf
only.pub const MF_E_UNSUPPORTED_FORMAT: Self
mf
only.pub const MF_E_MP3_BAD_CRC: Self
mf
only.pub const MF_E_NOT_PROTECTED: Self
mf
only.pub const MF_E_MEDIA_SOURCE_WRONGSTATE: Self
mf
only.pub const MF_E_MEDIA_SOURCE_NO_STREAMS_SELECTED: Self
mf
only.pub const MF_E_CANNOT_FIND_KEYFRAME_SAMPLE: Self
mf
only.pub const MF_E_UNSUPPORTED_CHARACTERISTICS: Self
mf
only.pub const MF_E_NO_AUDIO_RECORDING_DEVICE: Self
mf
only.pub const MF_E_AUDIO_RECORDING_DEVICE_IN_USE: Self
mf
only.pub const MF_E_AUDIO_RECORDING_DEVICE_INVALIDATED: Self
mf
only.pub const MF_E_VIDEO_RECORDING_DEVICE_INVALIDATED: Self
mf
only.pub const MF_E_VIDEO_RECORDING_DEVICE_PREEMPTED: Self
mf
only.pub const MF_E_NETWORK_RESOURCE_FAILURE: Self
mf
only.pub const MF_E_NET_WRITE: Self
mf
only.pub const MF_E_NET_READ: Self
mf
only.pub const MF_E_NET_REQUIRE_NETWORK: Self
mf
only.pub const MF_E_NET_REQUIRE_ASYNC: Self
mf
only.pub const MF_E_NET_BWLEVEL_NOT_SUPPORTED: Self
mf
only.pub const MF_E_NET_STREAMGROUPS_NOT_SUPPORTED: Self
mf
only.pub const MF_E_NET_MANUALSS_NOT_SUPPORTED: Self
mf
only.pub const MF_E_NET_INVALID_PRESENTATION_DESCRIPTOR: Self
mf
only.pub const MF_E_NET_CACHESTREAM_NOT_FOUND: Self
mf
only.pub const MF_I_MANUAL_PROXY: Self
mf
only.pub const MF_E_NET_REQUIRE_INPUT: Self
mf
only.pub const MF_E_NET_REDIRECT: Self
mf
only.pub const MF_E_NET_REDIRECT_TO_PROXY: Self
mf
only.pub const MF_E_NET_TOO_MANY_REDIRECTS: Self
mf
only.pub const MF_E_NET_TIMEOUT: Self
mf
only.pub const MF_E_NET_CLIENT_CLOSE: Self
mf
only.pub const MF_E_NET_BAD_CONTROL_DATA: Self
mf
only.pub const MF_E_NET_INCOMPATIBLE_SERVER: Self
mf
only.pub const MF_E_NET_UNSAFE_URL: Self
mf
only.pub const MF_E_NET_CACHE_NO_DATA: Self
mf
only.pub const MF_E_NET_EOL: Self
mf
only.pub const MF_E_NET_BAD_REQUEST: Self
mf
only.pub const MF_E_NET_INTERNAL_SERVER_ERROR: Self
mf
only.pub const MF_E_NET_SESSION_NOT_FOUND: Self
mf
only.pub const MF_E_NET_NOCONNECTION: Self
mf
only.pub const MF_E_NET_CONNECTION_FAILURE: Self
mf
only.pub const MF_E_NET_INCOMPATIBLE_PUSHSERVER: Self
mf
only.pub const MF_E_NET_SERVER_ACCESSDENIED: Self
mf
only.pub const MF_E_NET_PROXY_ACCESSDENIED: Self
mf
only.pub const MF_E_NET_CANNOTCONNECT: Self
mf
only.pub const MF_E_NET_INVALID_PUSH_TEMPLATE: Self
mf
only.pub const MF_E_NET_INVALID_PUSH_PUBLISHING_POINT: Self
mf
only.pub const MF_E_NET_BUSY: Self
mf
only.pub const MF_E_NET_RESOURCE_GONE: Self
mf
only.pub const MF_E_NET_ERROR_FROM_PROXY: Self
mf
only.pub const MF_E_NET_PROXY_TIMEOUT: Self
mf
only.pub const MF_E_NET_SERVER_UNAVAILABLE: Self
mf
only.pub const MF_E_NET_TOO_MUCH_DATA: Self
mf
only.pub const MF_E_NET_SESSION_INVALID: Self
mf
only.pub const MF_E_OFFLINE_MODE: Self
mf
only.pub const MF_E_NET_UDP_BLOCKED: Self
mf
only.pub const MF_E_NET_UNSUPPORTED_CONFIGURATION: Self
mf
only.pub const MF_E_NET_PROTOCOL_DISABLED: Self
mf
only.pub const MF_E_NET_COMPANION_DRIVER_DISCONNECT: Self
mf
only.pub const MF_E_ALREADY_INITIALIZED: Self
mf
only.pub const MF_E_BANDWIDTH_OVERRUN: Self
mf
only.pub const MF_E_LATE_SAMPLE: Self
mf
only.pub const MF_E_FLUSH_NEEDED: Self
mf
only.pub const MF_E_INVALID_PROFILE: Self
mf
only.pub const MF_E_INDEX_NOT_COMMITTED: Self
mf
only.pub const MF_E_NO_INDEX: Self
mf
only.pub const MF_E_CANNOT_INDEX_IN_PLACE: Self
mf
only.pub const MF_E_MISSING_ASF_LEAKYBUCKET: Self
mf
only.pub const MF_E_INVALID_ASF_STREAMID: Self
mf
only.pub const MF_E_STREAMSINK_REMOVED: Self
mf
only.pub const MF_E_STREAMSINKS_OUT_OF_SYNC: Self
mf
only.pub const MF_E_STREAMSINKS_FIXED: Self
mf
only.pub const MF_E_STREAMSINK_EXISTS: Self
mf
only.pub const MF_E_SAMPLEALLOCATOR_CANCELED: Self
mf
only.pub const MF_E_SAMPLEALLOCATOR_EMPTY: Self
mf
only.pub const MF_E_SINK_ALREADYSTOPPED: Self
mf
only.pub const MF_E_ASF_FILESINK_BITRATE_UNKNOWN: Self
mf
only.pub const MF_E_SINK_NO_STREAMS: Self
mf
only.pub const MF_S_SINK_NOT_FINALIZED: Self
mf
only.pub const MF_E_METADATA_TOO_LONG: Self
mf
only.pub const MF_E_SINK_NO_SAMPLES_PROCESSED: Self
mf
only.pub const MF_E_SINK_HEADERS_NOT_FOUND: Self
mf
only.pub const MF_E_VIDEO_REN_NO_PROCAMP_HW: Self
mf
only.pub const MF_E_VIDEO_REN_NO_DEINTERLACE_HW: Self
mf
only.pub const MF_E_VIDEO_REN_COPYPROT_FAILED: Self
mf
only.pub const MF_E_VIDEO_REN_SURFACE_NOT_SHARED: Self
mf
only.pub const MF_E_VIDEO_DEVICE_LOCKED: Self
mf
only.pub const MF_E_NEW_VIDEO_DEVICE: Self
mf
only.pub const MF_E_NO_VIDEO_SAMPLE_AVAILABLE: Self
mf
only.pub const MF_E_NO_AUDIO_PLAYBACK_DEVICE: Self
mf
only.pub const MF_E_AUDIO_PLAYBACK_DEVICE_IN_USE: Self
mf
only.pub const MF_E_AUDIO_PLAYBACK_DEVICE_INVALIDATED: Self
mf
only.pub const MF_E_AUDIO_SERVICE_NOT_RUNNING: Self
mf
only.pub const MF_E_AUDIO_BUFFER_SIZE_ERROR: Self
mf
only.pub const MF_E_AUDIO_CLIENT_WRAPPER_SPOOF_ERROR: Self
mf
only.pub const MF_E_TOPO_INVALID_OPTIONAL_NODE: Self
mf
only.pub const MF_E_TOPO_CANNOT_FIND_DECRYPTOR: Self
mf
only.pub const MF_E_TOPO_CODEC_NOT_FOUND: Self
mf
only.pub const MF_E_TOPO_CANNOT_CONNECT: Self
mf
only.pub const MF_E_TOPO_UNSUPPORTED: Self
mf
only.pub const MF_E_TOPO_INVALID_TIME_ATTRIBUTES: Self
mf
only.pub const MF_E_TOPO_LOOPS_IN_TOPOLOGY: Self
mf
only.pub const MF_E_TOPO_MISSING_PRESENTATION_DESCRIPTOR: Self
mf
only.pub const MF_E_TOPO_MISSING_STREAM_DESCRIPTOR: Self
mf
only.pub const MF_E_TOPO_STREAM_DESCRIPTOR_NOT_SELECTED: Self
mf
only.pub const MF_E_TOPO_MISSING_SOURCE: Self
mf
only.pub const MF_E_TOPO_SINK_ACTIVATES_UNSUPPORTED: Self
mf
only.pub const MF_E_SEQUENCER_UNKNOWN_SEGMENT_ID: Self
mf
only.pub const MF_S_SEQUENCER_CONTEXT_CANCELED: Self
mf
only.pub const MF_E_NO_SOURCE_IN_CACHE: Self
mf
only.pub const MF_S_SEQUENCER_SEGMENT_AT_END_OF_STREAM: Self
mf
only.pub const MF_E_TRANSFORM_TYPE_NOT_SET: Self
mf
only.pub const MF_E_TRANSFORM_STREAM_CHANGE: Self
mf
only.pub const MF_E_TRANSFORM_INPUT_REMAINING: Self
mf
only.pub const MF_E_TRANSFORM_PROFILE_MISSING: Self
mf
only.pub const MF_E_TRANSFORM_PROFILE_INVALID_OR_CORRUPT: Self
mf
only.pub const MF_E_TRANSFORM_PROFILE_TRUNCATED: Self
mf
only.pub const MF_E_TRANSFORM_PROPERTY_PID_NOT_RECOGNIZED: Self
mf
only.pub const MF_E_TRANSFORM_PROPERTY_VARIANT_TYPE_WRONG: Self
mf
only.pub const MF_E_TRANSFORM_PROPERTY_NOT_WRITEABLE: Self
mf
only.pub const MF_E_TRANSFORM_PROPERTY_ARRAY_VALUE_WRONG_NUM_DIM: Self
mf
only.pub const MF_E_TRANSFORM_PROPERTY_VALUE_SIZE_WRONG: Self
mf
only.pub const MF_E_TRANSFORM_PROPERTY_VALUE_OUT_OF_RANGE: Self
mf
only.pub const MF_E_TRANSFORM_PROPERTY_VALUE_INCOMPATIBLE: Self
mf
only.pub const MF_E_TRANSFORM_NOT_POSSIBLE_FOR_CURRENT_OUTPUT_MEDIATYPE: Self
mf
only.pub const MF_E_TRANSFORM_NOT_POSSIBLE_FOR_CURRENT_INPUT_MEDIATYPE: Self
mf
only.pub const MF_E_TRANSFORM_NOT_POSSIBLE_FOR_CURRENT_MEDIATYPE_COMBINATION: Self
mf
only.pub const MF_E_TRANSFORM_CONFLICTS_WITH_OTHER_CURRENTLY_ENABLED_FEATURES: Self
mf
only.pub const MF_E_TRANSFORM_NEED_MORE_INPUT: Self
mf
only.pub const MF_E_TRANSFORM_NOT_POSSIBLE_FOR_CURRENT_SPKR_CONFIG: Self
mf
only.pub const MF_E_TRANSFORM_CANNOT_CHANGE_MEDIATYPE_WHILE_PROCESSING: Self
mf
only.pub const MF_S_TRANSFORM_DO_NOT_PROPAGATE_EVENT: Self
mf
only.pub const MF_E_UNSUPPORTED_D3D_TYPE: Self
mf
only.pub const MF_E_TRANSFORM_ASYNC_LOCKED: Self
mf
only.pub const MF_E_TRANSFORM_CANNOT_INITIALIZE_ACM_DRIVER: Self
mf
only.pub const MF_E_TRANSFORM_STREAM_INVALID_RESOLUTION: Self
mf
only.pub const MF_E_TRANSFORM_ASYNC_MFT_NOT_SUPPORTED: Self
mf
only.pub const MF_E_TRANSFORM_EXATTRIBUTE_NOT_SUPPORTED: Self
mf
only.pub const MF_E_LICENSE_INCORRECT_RIGHTS: Self
mf
only.pub const MF_E_LICENSE_OUTOFDATE: Self
mf
only.pub const MF_E_LICENSE_REQUIRED: Self
mf
only.pub const MF_E_DRM_HARDWARE_INCONSISTENT: Self
mf
only.pub const MF_E_NO_CONTENT_PROTECTION_MANAGER: Self
mf
only.pub const MF_E_LICENSE_RESTORE_NO_RIGHTS: Self
mf
only.pub const MF_E_BACKUP_RESTRICTED_LICENSE: Self
mf
only.pub const MF_E_LICENSE_RESTORE_NEEDS_INDIVIDUALIZATION: Self
mf
only.pub const MF_S_PROTECTION_NOT_REQUIRED: Self
mf
only.pub const MF_E_COMPONENT_REVOKED: Self
mf
only.pub const MF_E_TRUST_DISABLED: Self
mf
only.pub const MF_E_WMDRMOTA_NO_ACTION: Self
mf
only.pub const MF_E_WMDRMOTA_ACTION_ALREADY_SET: Self
mf
only.pub const MF_E_WMDRMOTA_DRM_HEADER_NOT_AVAILABLE: Self
mf
only.pub const MF_E_WMDRMOTA_DRM_ENCRYPTION_SCHEME_NOT_SUPPORTED: Self
mf
only.pub const MF_E_WMDRMOTA_ACTION_MISMATCH: Self
mf
only.pub const MF_E_WMDRMOTA_INVALID_POLICY: Self
mf
only.pub const MF_E_POLICY_UNSUPPORTED: Self
mf
only.pub const MF_E_OPL_NOT_SUPPORTED: Self
mf
only.pub const MF_E_TOPOLOGY_VERIFICATION_FAILED: Self
mf
only.pub const MF_E_SIGNATURE_VERIFICATION_FAILED: Self
mf
only.pub const MF_E_DEBUGGING_NOT_ALLOWED: Self
mf
only.pub const MF_E_CODE_EXPIRED: Self
mf
only.pub const MF_E_GRL_VERSION_TOO_LOW: Self
mf
only.pub const MF_E_GRL_RENEWAL_NOT_FOUND: Self
mf
only.pub const MF_E_GRL_EXTENSIBLE_ENTRY_NOT_FOUND: Self
mf
only.pub const MF_E_KERNEL_UNTRUSTED: Self
mf
only.pub const MF_E_PEAUTH_UNTRUSTED: Self
mf
only.pub const MF_E_NON_PE_PROCESS: Self
mf
only.pub const MF_E_REBOOT_REQUIRED: Self
mf
only.pub const MF_S_WAIT_FOR_POLICY_SET: Self
mf
only.pub const MF_S_VIDEO_DISABLED_WITH_UNKNOWN_SOFTWARE_OUTPUT: Self
mf
only.pub const MF_E_GRL_INVALID_FORMAT: Self
mf
only.pub const MF_E_GRL_UNRECOGNIZED_FORMAT: Self
mf
only.pub const MF_E_ALL_PROCESS_RESTART_REQUIRED: Self
mf
only.pub const MF_E_PROCESS_RESTART_REQUIRED: Self
mf
only.pub const MF_E_USERMODE_UNTRUSTED: Self
mf
only.pub const MF_E_PEAUTH_SESSION_NOT_STARTED: Self
mf
only.pub const MF_E_PEAUTH_PUBLICKEY_REVOKED: Self
mf
only.pub const MF_E_GRL_ABSENT: Self
mf
only.pub const MF_S_PE_TRUSTED: Self
mf
only.pub const MF_E_PE_UNTRUSTED: Self
mf
only.pub const MF_E_PEAUTH_NOT_STARTED: Self
mf
only.pub const MF_E_INCOMPATIBLE_SAMPLE_PROTECTION: Self
mf
only.pub const MF_E_PE_SESSIONS_MAXED: Self
mf
only.pub const MF_E_HIGH_SECURITY_LEVEL_CONTENT_NOT_ALLOWED: Self
mf
only.pub const MF_E_TEST_SIGNED_COMPONENTS_NOT_ALLOWED: Self
mf
only.pub const MF_E_ITA_UNSUPPORTED_ACTION: Self
mf
only.pub const MF_E_ITA_ERROR_PARSING_SAP_PARAMETERS: Self
mf
only.pub const MF_E_POLICY_MGR_ACTION_OUTOFBOUNDS: Self
mf
only.pub const MF_E_BAD_OPL_STRUCTURE_FORMAT: Self
mf
only.pub const MF_E_ITA_UNRECOGNIZED_ANALOG_VIDEO_PROTECTION_GUID: Self
mf
only.pub const MF_E_NO_PMP_HOST: Self
mf
only.pub const MF_E_ITA_OPL_DATA_NOT_INITIALIZED: Self
mf
only.pub const MF_E_ITA_UNRECOGNIZED_ANALOG_VIDEO_OUTPUT: Self
mf
only.pub const MF_E_ITA_UNRECOGNIZED_DIGITAL_VIDEO_OUTPUT: Self
mf
only.pub const MF_E_RESOLUTION_REQUIRES_PMP_CREATION_CALLBACK: Self
mf
only.pub const MF_E_INVALID_AKE_CHANNEL_PARAMETERS: Self
mf
only.pub const MF_E_CONTENT_PROTECTION_SYSTEM_NOT_ENABLED: Self
mf
only.pub const MF_E_UNSUPPORTED_CONTENT_PROTECTION_SYSTEM: Self
mf
only.pub const MF_E_DRM_MIGRATION_NOT_SUPPORTED: Self
mf
only.pub const MF_E_HDCP_AUTHENTICATION_FAILURE: Self
mf
only.pub const MF_E_HDCP_LINK_FAILURE: Self
mf
only.pub const MF_E_CLOCK_INVALID_CONTINUITY_KEY: Self
mf
only.pub const MF_E_CLOCK_NO_TIME_SOURCE: Self
mf
only.pub const MF_E_CLOCK_STATE_ALREADY_SET: Self
mf
only.pub const MF_E_CLOCK_NOT_SIMPLE: Self
mf
only.pub const MF_S_CLOCK_STOPPED: Self
mf
only.pub const MF_E_CLOCK_AUDIO_DEVICE_POSITION_UNEXPECTED: Self
mf
only.pub const MF_E_CLOCK_AUDIO_RENDER_POSITION_UNEXPECTED: Self
mf
only.pub const MF_E_CLOCK_AUDIO_RENDER_TIME_UNEXPECTED: Self
mf
only.pub const MF_E_NO_MORE_DROP_MODES: Self
mf
only.pub const MF_E_NO_MORE_QUALITY_LEVELS: Self
mf
only.pub const MF_E_DROPTIME_NOT_SUPPORTED: Self
mf
only.pub const MF_E_QUALITYKNOB_WAIT_LONGER: Self
mf
only.pub const MF_E_QM_INVALIDSTATE: Self
mf
only.pub const MF_E_TRANSCODE_NO_CONTAINERTYPE: Self
mf
only.pub const MF_E_TRANSCODE_PROFILE_NO_MATCHING_STREAMS: Self
mf
only.pub const MF_E_TRANSCODE_NO_MATCHING_ENCODER: Self
mf
only.pub const MF_E_TRANSCODE_INVALID_PROFILE: Self
mf
only.pub const MF_E_ALLOCATOR_NOT_INITIALIZED: Self
mf
only.pub const MF_E_ALLOCATOR_NOT_COMMITED: Self
mf
only.pub const MF_E_ALLOCATOR_ALREADY_COMMITED: Self
mf
only.pub const MF_E_STREAM_ERROR: Self
mf
only.pub const MF_E_INVALID_STREAM_STATE: Self
mf
only.pub const MF_E_HW_STREAM_NOT_CONNECTED: Self
mf
only.pub const MF_E_NO_CAPTURE_DEVICES_AVAILABLE: Self
mf
only.pub const MF_E_CAPTURE_SINK_OUTPUT_NOT_SET: Self
mf
only.pub const MF_E_CAPTURE_SINK_MIRROR_ERROR: Self
mf
only.pub const MF_E_CAPTURE_SINK_ROTATE_ERROR: Self
mf
only.pub const MF_E_CAPTURE_ENGINE_INVALID_OP: Self
mf
only.pub const MF_E_CAPTURE_ENGINE_ALL_EFFECTS_REMOVED: Self
mf
only.pub const MF_E_CAPTURE_SOURCE_NO_INDEPENDENT_PHOTO_STREAM_PRESENT: Self
mf
only.pub const MF_E_CAPTURE_SOURCE_NO_VIDEO_STREAM_PRESENT: Self
mf
only.pub const MF_E_CAPTURE_SOURCE_NO_AUDIO_STREAM_PRESENT: Self
mf
only.pub const MF_E_CAPTURE_SOURCE_DEVICE_EXTENDEDPROP_OP_IN_PROGRESS: Self
mf
only.pub const MF_E_CAPTURE_PROPERTY_SET_DURING_PHOTO: Self
mf
only.pub const MF_E_CAPTURE_NO_SAMPLES_IN_QUEUE: Self
mf
only.pub const MF_E_HW_ACCELERATED_THUMBNAIL_NOT_SUPPORTED: Self
mf
only.pub const MF_E_UNSUPPORTED_CAPTURE_DEVICE_PRESENT: Self
mf
only.pub const MF_E_TIMELINECONTROLLER_UNSUPPORTED_SOURCE_TYPE: Self
mf
only.pub const MF_E_TIMELINECONTROLLER_NOT_ALLOWED: Self
mf
only.pub const MF_E_TIMELINECONTROLLER_CANNOT_ATTACH: Self
mf
only.pub const MF_E_MEDIA_EXTENSION_APPSERVICE_CONNECTION_FAILED: Self
mf
only.pub const MF_E_MEDIA_EXTENSION_APPSERVICE_REQUEST_FAILED: Self
mf
only.pub const MF_E_MEDIA_EXTENSION_PACKAGE_INTEGRITY_CHECK_FAILED: Self
mf
only.pub const MF_E_MEDIA_EXTENSION_PACKAGE_LICENSE_INVALID: Self
mf
only.Source§impl HRESULT
impl HRESULT
Sourcepub const unsafe fn from_raw(v: u32) -> Self
pub const unsafe fn from_raw(v: u32) -> Self
Constructs a new object by wrapping the given integer value.
§Safety
Be sure the given value is meaningful for the actual type.
Sourcepub const fn raw(&self) -> u32
pub const fn raw(&self) -> u32
Returns the primitive integer underlying value.
This method is similar to Into
, but it
is const
, therefore it can be used in
const contexts.
Source§impl HRESULT
impl HRESULT
Sourcepub const fn code(self) -> u16
pub const fn code(self) -> u16
HRESULT_CODE
macro.
Sourcepub const fn facility(self) -> FACILITY
pub const fn facility(self) -> FACILITY
HRESULT_FACILITY
macro.
Sourcepub const fn severity(self) -> SEVERITY
pub const fn severity(self) -> SEVERITY
HRESULT_SEVERITY
macro.
Source§impl HRESULT
impl HRESULT
pub const S_FALSE: Self
pub const E_UNEXPECTED: Self
pub const E_NOTIMPL: Self
pub const E_OUTOFMEMORY: Self
pub const E_INVALIDARG: Self
pub const E_NOINTERFACE: Self
pub const E_POINTER: Self
pub const E_HANDLE: Self
pub const E_ABORT: Self
pub const E_FAIL: Self
pub const E_ACCESSDENIED: Self
pub const E_PENDING: Self
pub const E_BOUNDS: Self
pub const E_CHANGED_STATE: Self
pub const E_ILLEGAL_STATE_CHANGE: Self
pub const E_ILLEGAL_METHOD_CALL: Self
pub const RO_E_METADATA_NAME_NOT_FOUND: Self
pub const RO_E_METADATA_NAME_IS_NAMESPACE: Self
pub const RO_E_METADATA_INVALID_TYPE_FORMAT: Self
pub const RO_E_INVALID_METADATA_FILE: Self
pub const RO_E_CLOSED: Self
pub const RO_E_EXCLUSIVE_WRITE: Self
pub const RO_E_CHANGE_NOTIFICATION_IN_PROGRESS: Self
pub const RO_E_ERROR_STRING_NOT_FOUND: Self
pub const E_STRING_NOT_NULL_TERMINATED: Self
pub const E_ILLEGAL_DELEGATE_ASSIGNMENT: Self
pub const E_ASYNC_OPERATION_NOT_STARTED: Self
pub const E_APPLICATION_EXITING: Self
pub const E_APPLICATION_VIEW_EXITING: Self
pub const RO_E_MUST_BE_AGILE: Self
pub const RO_E_UNSUPPORTED_FROM_MTA: Self
pub const RO_E_COMMITTED: Self
pub const RO_E_BLOCKED_CROSS_ASTA_CALL: Self
pub const RO_E_CANNOT_ACTIVATE_FULL_TRUST_SERVER: Self
pub const RO_E_CANNOT_ACTIVATE_UNIVERSAL_APPLICATION_SERVER: Self
pub const CO_E_INIT_TLS: Self
pub const CO_E_INIT_SHARED_ALLOCATOR: Self
pub const CO_E_INIT_MEMORY_ALLOCATOR: Self
pub const CO_E_INIT_CLASS_CACHE: Self
pub const CO_E_INIT_RPC_CHANNEL: Self
pub const CO_E_INIT_TLS_SET_CHANNEL_CONTROL: Self
pub const CO_E_INIT_TLS_CHANNEL_CONTROL: Self
pub const CO_E_INIT_UNACCEPTED_USER_ALLOCATOR: Self
pub const CO_E_INIT_SCM_MUTEX_EXISTS: Self
pub const CO_E_INIT_SCM_FILE_MAPPING_EXISTS: Self
pub const CO_E_INIT_SCM_MAP_VIEW_OF_FILE: Self
pub const CO_E_INIT_SCM_EXEC_FAILURE: Self
pub const CO_E_INIT_ONLY_SINGLE_THREADED: Self
pub const CO_E_CANT_REMOTE: Self
pub const CO_E_BAD_SERVER_NAME: Self
pub const CO_E_WRONG_SERVER_IDENTITY: Self
pub const CO_E_OLE1DDE_DISABLED: Self
pub const CO_E_RUNAS_SYNTAX: Self
pub const CO_E_CREATEPROCESS_FAILURE: Self
pub const CO_E_RUNAS_CREATEPROCESS_FAILURE: Self
pub const CO_E_RUNAS_LOGON_FAILURE: Self
pub const CO_E_LAUNCH_PERMSSION_DENIED: Self
pub const CO_E_START_SERVICE_FAILURE: Self
pub const CO_E_REMOTE_COMMUNICATION_FAILURE: Self
pub const CO_E_SERVER_START_TIMEOUT: Self
pub const CO_E_CLSREG_INCONSISTENT: Self
pub const CO_E_IIDREG_INCONSISTENT: Self
pub const CO_E_NOT_SUPPORTED: Self
pub const CO_E_RELOAD_DLL: Self
pub const CO_E_MSI_ERROR: Self
pub const CO_E_ATTEMPT_TO_CREATE_OUTSIDE_CLIENT_CONTEXT: Self
pub const CO_E_SERVER_PAUSED: Self
pub const CO_E_SERVER_NOT_PAUSED: Self
pub const CO_E_CLASS_DISABLED: Self
pub const CO_E_CLRNOTAVAILABLE: Self
pub const CO_E_ASYNC_WORK_REJECTED: Self
pub const CO_E_SERVER_INIT_TIMEOUT: Self
pub const CO_E_NO_SECCTX_IN_ACTIVATE: Self
pub const CO_E_TRACKER_CONFIG: Self
pub const CO_E_THREADPOOL_CONFIG: Self
pub const CO_E_SXS_CONFIG: Self
pub const CO_E_MALFORMED_SPN: Self
pub const CO_E_UNREVOKED_REGISTRATION_ON_APARTMENT_SHUTDOWN: Self
pub const CO_E_PREMATURE_STUB_RUNDOWN: Self
pub const OLE_E_OLEVERB: Self
pub const OLE_E_ADVF: Self
pub const OLE_E_ENUM_NOMORE: Self
pub const OLE_E_ADVISENOTSUPPORTED: Self
pub const OLE_E_NOCONNECTION: Self
pub const OLE_E_NOTRUNNING: Self
pub const OLE_E_NOCACHE: Self
pub const OLE_E_BLANK: Self
pub const OLE_E_CLASSDIFF: Self
pub const OLE_E_CANT_GETMONIKER: Self
pub const OLE_E_CANT_BINDTOSOURCE: Self
pub const OLE_E_STATIC: Self
pub const OLE_E_PROMPTSAVECANCELLED: Self
pub const OLE_E_INVALIDRECT: Self
pub const OLE_E_WRONGCOMPOBJ: Self
pub const OLE_E_INVALIDHWND: Self
pub const OLE_E_NOT_INPLACEACTIVE: Self
pub const OLE_E_CANTCONVERT: Self
pub const OLE_E_NOSTORAGE: Self
pub const DV_E_FORMATETC: Self
pub const DV_E_DVTARGETDEVICE: Self
pub const DV_E_STGMEDIUM: Self
pub const DV_E_STATDATA: Self
pub const DV_E_LINDEX: Self
pub const DV_E_TYMED: Self
pub const DV_E_CLIPFORMAT: Self
pub const DV_E_DVASPECT: Self
pub const DV_E_DVTARGETDEVICE_SIZE: Self
pub const DV_E_NOIVIEWOBJECT: Self
pub const DRAGDROP_E_NOTREGISTERED: Self
pub const DRAGDROP_E_ALREADYREGISTERED: Self
pub const DRAGDROP_E_INVALIDHWND: Self
pub const DRAGDROP_E_CONCURRENT_DRAG_ATTEMPTED: Self
pub const CLASS_E_NOAGGREGATION: Self
pub const CLASS_E_CLASSNOTAVAILABLE: Self
pub const CLASS_E_NOTLICENSED: Self
pub const VIEW_E_DRAW: Self
pub const REGDB_E_READREGDB: Self
pub const REGDB_E_WRITEREGDB: Self
pub const REGDB_E_KEYMISSING: Self
pub const REGDB_E_INVALIDVALUE: Self
pub const REGDB_E_CLASSNOTREG: Self
pub const REGDB_E_IIDNOTREG: Self
pub const REGDB_E_BADTHREADINGMODEL: Self
pub const REGDB_E_PACKAGEPOLICYVIOLATION: Self
pub const CAT_E_CATIDNOEXIST: Self
pub const CAT_E_NODESCRIPTION: Self
pub const CS_E_PACKAGE_NOTFOUND: Self
pub const CS_E_NOT_DELETABLE: Self
pub const CS_E_CLASS_NOTFOUND: Self
pub const CS_E_INVALID_VERSION: Self
pub const CS_E_NO_CLASSSTORE: Self
pub const CS_E_OBJECT_NOTFOUND: Self
pub const CS_E_OBJECT_ALREADY_EXISTS: Self
pub const CS_E_INVALID_PATH: Self
pub const CS_E_NETWORK_ERROR: Self
pub const CS_E_ADMIN_LIMIT_EXCEEDED: Self
pub const CS_E_SCHEMA_MISMATCH: Self
pub const CS_E_INTERNAL_ERROR: Self
pub const CACHE_E_NOCACHE_UPDATED: Self
pub const OLEOBJ_E_NOVERBS: Self
pub const OLEOBJ_E_INVALIDVERB: Self
pub const INPLACE_E_NOTUNDOABLE: Self
pub const INPLACE_E_NOTOOLSPACE: Self
pub const CONVERT10_E_OLESTREAM_GET: Self
pub const CONVERT10_E_OLESTREAM_PUT: Self
pub const CONVERT10_E_OLESTREAM_FMT: Self
pub const CONVERT10_E_OLESTREAM_BITMAP_TO_DIB: Self
pub const CONVERT10_E_STG_FMT: Self
pub const CONVERT10_E_STG_NO_STD_STREAM: Self
pub const CONVERT10_E_STG_DIB_TO_BITMAP: Self
pub const CLIPBRD_E_CANT_OPEN: Self
pub const CLIPBRD_E_CANT_EMPTY: Self
pub const CLIPBRD_E_CANT_SET: Self
pub const CLIPBRD_E_BAD_DATA: Self
pub const CLIPBRD_E_CANT_CLOSE: Self
pub const MK_E_CONNECTMANUALLY: Self
pub const MK_E_EXCEEDEDDEADLINE: Self
pub const MK_E_NEEDGENERIC: Self
pub const MK_E_UNAVAILABLE: Self
pub const MK_E_SYNTAX: Self
pub const MK_E_NOOBJECT: Self
pub const MK_E_INVALIDEXTENSION: Self
pub const MK_E_INTERMEDIATEINTERFACENOTSUPPORTED: Self
pub const MK_E_NOTBINDABLE: Self
pub const MK_E_NOTBOUND: Self
pub const MK_E_CANTOPENFILE: Self
pub const MK_E_MUSTBOTHERUSER: Self
pub const MK_E_NOINVERSE: Self
pub const MK_E_NOSTORAGE: Self
pub const MK_E_NOPREFIX: Self
pub const MK_E_ENUMERATION_FAILED: Self
pub const CO_E_NOTINITIALIZED: Self
pub const CO_E_ALREADYINITIALIZED: Self
pub const CO_E_CANTDETERMINECLASS: Self
pub const CO_E_CLASSSTRING: Self
pub const CO_E_IIDSTRING: Self
pub const CO_E_APPNOTFOUND: Self
pub const CO_E_APPSINGLEUSE: Self
pub const CO_E_ERRORINAPP: Self
pub const CO_E_DLLNOTFOUND: Self
pub const CO_E_ERRORINDLL: Self
pub const CO_E_WRONGOSFORAPP: Self
pub const CO_E_OBJNOTREG: Self
pub const CO_E_OBJISREG: Self
pub const CO_E_OBJNOTCONNECTED: Self
pub const CO_E_APPDIDNTREG: Self
pub const CO_E_RELEASED: Self
pub const EVENT_S_SOME_SUBSCRIBERS_FAILED: Self
pub const EVENT_E_ALL_SUBSCRIBERS_FAILED: Self
pub const EVENT_S_NOSUBSCRIBERS: Self
pub const EVENT_E_QUERYSYNTAX: Self
pub const EVENT_E_QUERYFIELD: Self
pub const EVENT_E_INTERNALEXCEPTION: Self
pub const EVENT_E_INTERNALERROR: Self
pub const EVENT_E_INVALID_PER_USER_SID: Self
pub const EVENT_E_USER_EXCEPTION: Self
pub const EVENT_E_TOO_MANY_METHODS: Self
pub const EVENT_E_MISSING_EVENTCLASS: Self
pub const EVENT_E_NOT_ALL_REMOVED: Self
pub const EVENT_E_COMPLUS_NOT_INSTALLED: Self
pub const EVENT_E_CANT_MODIFY_OR_DELETE_UNCONFIGURED_OBJECT: Self
pub const EVENT_E_CANT_MODIFY_OR_DELETE_CONFIGURED_OBJECT: Self
pub const EVENT_E_INVALID_EVENT_CLASS_PARTITION: Self
pub const EVENT_E_PER_USER_SID_NOT_LOGGED_ON: Self
pub const TPC_E_INVALID_PROPERTY: Self
pub const TPC_E_NO_DEFAULT_TABLET: Self
pub const TPC_E_UNKNOWN_PROPERTY: Self
pub const TPC_E_INVALID_INPUT_RECT: Self
pub const TPC_E_INVALID_STROKE: Self
pub const TPC_E_INITIALIZE_FAIL: Self
pub const TPC_E_NOT_RELEVANT: Self
pub const TPC_E_INVALID_PACKET_DESCRIPTION: Self
pub const TPC_E_RECOGNIZER_NOT_REGISTERED: Self
pub const TPC_E_INVALID_RIGHTS: Self
pub const TPC_E_OUT_OF_ORDER_CALL: Self
pub const TPC_E_QUEUE_FULL: Self
pub const TPC_E_INVALID_CONFIGURATION: Self
pub const TPC_E_INVALID_DATA_FROM_RECOGNIZER: Self
pub const TPC_S_TRUNCATED: Self
pub const TPC_S_INTERRUPTED: Self
pub const TPC_S_NO_DATA_TO_PROCESS: Self
pub const XACT_E_ALREADYOTHERSINGLEPHASE: Self
pub const XACT_E_CANTRETAIN: Self
pub const XACT_E_COMMITFAILED: Self
pub const XACT_E_COMMITPREVENTED: Self
pub const XACT_E_HEURISTICABORT: Self
pub const XACT_E_HEURISTICCOMMIT: Self
pub const XACT_E_HEURISTICDAMAGE: Self
pub const XACT_E_HEURISTICDANGER: Self
pub const XACT_E_ISOLATIONLEVEL: Self
pub const XACT_E_NOASYNC: Self
pub const XACT_E_NOENLIST: Self
pub const XACT_E_NOISORETAIN: Self
pub const XACT_E_NORESOURCE: Self
pub const XACT_E_NOTCURRENT: Self
pub const XACT_E_NOTRANSACTION: Self
pub const XACT_E_NOTSUPPORTED: Self
pub const XACT_E_UNKNOWNRMGRID: Self
pub const XACT_E_WRONGSTATE: Self
pub const XACT_E_WRONGUOW: Self
pub const XACT_E_XTIONEXISTS: Self
pub const XACT_E_NOIMPORTOBJECT: Self
pub const XACT_E_INVALIDCOOKIE: Self
pub const XACT_E_INDOUBT: Self
pub const XACT_E_NOTIMEOUT: Self
pub const XACT_E_ALREADYINPROGRESS: Self
pub const XACT_E_ABORTED: Self
pub const XACT_E_LOGFULL: Self
pub const XACT_E_TMNOTAVAILABLE: Self
pub const XACT_E_CONNECTION_DOWN: Self
pub const XACT_E_CONNECTION_DENIED: Self
pub const XACT_E_REENLISTTIMEOUT: Self
pub const XACT_E_TIP_CONNECT_FAILED: Self
pub const XACT_E_TIP_PROTOCOL_ERROR: Self
pub const XACT_E_TIP_PULL_FAILED: Self
pub const XACT_E_DEST_TMNOTAVAILABLE: Self
pub const XACT_E_TIP_DISABLED: Self
pub const XACT_E_NETWORK_TX_DISABLED: Self
pub const XACT_E_PARTNER_NETWORK_TX_DISABLED: Self
pub const XACT_E_XA_TX_DISABLED: Self
pub const XACT_E_UNABLE_TO_READ_DTC_CONFIG: Self
pub const XACT_E_UNABLE_TO_LOAD_DTC_PROXY: Self
pub const XACT_E_ABORTING: Self
pub const XACT_E_PUSH_COMM_FAILURE: Self
pub const XACT_E_PULL_COMM_FAILURE: Self
pub const XACT_E_LU_TX_DISABLED: Self
pub const XACT_E_CLERKNOTFOUND: Self
pub const XACT_E_CLERKEXISTS: Self
pub const XACT_E_RECOVERYINPROGRESS: Self
pub const XACT_E_TRANSACTIONCLOSED: Self
pub const XACT_E_INVALIDLSN: Self
pub const XACT_E_REPLAYREQUEST: Self
pub const XACT_S_ASYNC: Self
pub const XACT_S_DEFECT: Self
pub const XACT_S_READONLY: Self
pub const XACT_S_SOMENORETAIN: Self
pub const XACT_S_OKINFORM: Self
pub const XACT_S_MADECHANGESCONTENT: Self
pub const XACT_S_MADECHANGESINFORM: Self
pub const XACT_S_ALLNORETAIN: Self
pub const XACT_S_ABORTING: Self
pub const XACT_S_SINGLEPHASE: Self
pub const XACT_S_LOCALLY_OK: Self
pub const XACT_S_LASTRESOURCEMANAGER: Self
pub const CONTEXT_E_ABORTED: Self
pub const CONTEXT_E_ABORTING: Self
pub const CONTEXT_E_NOCONTEXT: Self
pub const CONTEXT_E_WOULD_DEADLOCK: Self
pub const CONTEXT_E_SYNCH_TIMEOUT: Self
pub const CONTEXT_E_OLDREF: Self
pub const CONTEXT_E_ROLENOTFOUND: Self
pub const CONTEXT_E_TMNOTAVAILABLE: Self
pub const CO_E_ACTIVATIONFAILED: Self
pub const CO_E_ACTIVATIONFAILED_EVENTLOGGED: Self
pub const CO_E_ACTIVATIONFAILED_CATALOGERROR: Self
pub const CO_E_ACTIVATIONFAILED_TIMEOUT: Self
pub const CO_E_INITIALIZATIONFAILED: Self
pub const CONTEXT_E_NOJIT: Self
pub const CONTEXT_E_NOTRANSACTION: Self
pub const CO_E_THREADINGMODEL_CHANGED: Self
pub const CO_E_NOIISINTRINSICS: Self
pub const CO_E_NOCOOKIES: Self
pub const CO_E_DBERROR: Self
pub const CO_E_NOTPOOLED: Self
pub const CO_E_NOTCONSTRUCTED: Self
pub const CO_E_NOSYNCHRONIZATION: Self
pub const CO_E_ISOLEVELMISMATCH: Self
pub const CO_E_CALL_OUT_OF_TX_SCOPE_NOT_ALLOWED: Self
pub const CO_E_EXIT_TRANSACTION_SCOPE_NOT_CALLED: Self
pub const OLE_S_USEREG: Self
pub const OLE_S_STATIC: Self
pub const OLE_S_MAC_CLIPFORMAT: Self
pub const DRAGDROP_S_DROP: Self
pub const DRAGDROP_S_CANCEL: Self
pub const DRAGDROP_S_USEDEFAULTCURSORS: Self
pub const DATA_S_SAMEFORMATETC: Self
pub const VIEW_S_ALREADY_FROZEN: Self
pub const CACHE_S_FORMATETC_NOTSUPPORTED: Self
pub const CACHE_S_SAMECACHE: Self
pub const CACHE_S_SOMECACHES_NOTUPDATED: Self
pub const OLEOBJ_S_INVALIDVERB: Self
pub const OLEOBJ_S_CANNOT_DOVERB_NOW: Self
pub const OLEOBJ_S_INVALIDHWND: Self
pub const INPLACE_S_TRUNCATED: Self
pub const CONVERT10_S_NO_PRESENTATION: Self
pub const MK_S_REDUCED_TO_SELF: Self
pub const MK_S_ME: Self
pub const MK_S_HIM: Self
pub const MK_S_US: Self
pub const MK_S_MONIKERALREADYREGISTERED: Self
pub const SCHED_S_TASK_READY: Self
pub const SCHED_S_TASK_RUNNING: Self
pub const SCHED_S_TASK_DISABLED: Self
pub const SCHED_S_TASK_HAS_NOT_RUN: Self
pub const SCHED_S_TASK_NO_MORE_RUNS: Self
pub const SCHED_S_TASK_NOT_SCHEDULED: Self
pub const SCHED_S_TASK_TERMINATED: Self
pub const SCHED_S_TASK_NO_VALID_TRIGGERS: Self
pub const SCHED_S_EVENT_TRIGGER: Self
pub const SCHED_E_TRIGGER_NOT_FOUND: Self
pub const SCHED_E_TASK_NOT_READY: Self
pub const SCHED_E_TASK_NOT_RUNNING: Self
pub const SCHED_E_SERVICE_NOT_INSTALLED: Self
pub const SCHED_E_CANNOT_OPEN_TASK: Self
pub const SCHED_E_INVALID_TASK: Self
pub const SCHED_E_ACCOUNT_INFORMATION_NOT_SET: Self
pub const SCHED_E_ACCOUNT_NAME_NOT_FOUND: Self
pub const SCHED_E_ACCOUNT_DBASE_CORRUPT: Self
pub const SCHED_E_NO_SECURITY_SERVICES: Self
pub const SCHED_E_UNKNOWN_OBJECT_VERSION: Self
pub const SCHED_E_UNSUPPORTED_ACCOUNT_OPTION: Self
pub const SCHED_E_SERVICE_NOT_RUNNING: Self
pub const SCHED_E_UNEXPECTEDNODE: Self
pub const SCHED_E_NAMESPACE: Self
pub const SCHED_E_INVALIDVALUE: Self
pub const SCHED_E_MISSINGNODE: Self
pub const SCHED_E_MALFORMEDXML: Self
pub const SCHED_S_SOME_TRIGGERS_FAILED: Self
pub const SCHED_S_BATCH_LOGON_PROBLEM: Self
pub const SCHED_E_TOO_MANY_NODES: Self
pub const SCHED_E_PAST_END_BOUNDARY: Self
pub const SCHED_E_ALREADY_RUNNING: Self
pub const SCHED_E_USER_NOT_LOGGED_ON: Self
pub const SCHED_E_INVALID_TASK_HASH: Self
pub const SCHED_E_SERVICE_NOT_AVAILABLE: Self
pub const SCHED_E_SERVICE_TOO_BUSY: Self
pub const SCHED_E_TASK_ATTEMPTED: Self
pub const SCHED_S_TASK_QUEUED: Self
pub const SCHED_E_TASK_DISABLED: Self
pub const SCHED_E_TASK_NOT_V1_COMPAT: Self
pub const SCHED_E_START_ON_DEMAND: Self
pub const SCHED_E_TASK_NOT_UBPM_COMPAT: Self
pub const SCHED_E_DEPRECATED_FEATURE_USED: Self
pub const CO_E_CLASS_CREATE_FAILED: Self
pub const CO_E_SCM_ERROR: Self
pub const CO_E_SCM_RPC_FAILURE: Self
pub const CO_E_BAD_PATH: Self
pub const CO_E_SERVER_EXEC_FAILURE: Self
pub const CO_E_OBJSRV_RPC_FAILURE: Self
pub const MK_E_NO_NORMALIZED: Self
pub const CO_E_SERVER_STOPPING: Self
pub const MEM_E_INVALID_ROOT: Self
pub const MEM_E_INVALID_LINK: Self
pub const MEM_E_INVALID_SIZE: Self
pub const CO_S_NOTALLINTERFACES: Self
pub const CO_S_MACHINENAMENOTFOUND: Self
pub const CO_E_MISSING_DISPLAYNAME: Self
pub const CO_E_RUNAS_VALUE_MUST_BE_AAA: Self
pub const CO_E_ELEVATION_DISABLED: Self
pub const APPX_E_PACKAGING_INTERNAL: Self
pub const APPX_E_INTERLEAVING_NOT_ALLOWED: Self
pub const APPX_E_RELATIONSHIPS_NOT_ALLOWED: Self
pub const APPX_E_MISSING_REQUIRED_FILE: Self
pub const APPX_E_INVALID_MANIFEST: Self
pub const APPX_E_INVALID_BLOCKMAP: Self
pub const APPX_E_CORRUPT_CONTENT: Self
pub const APPX_E_BLOCK_HASH_INVALID: Self
pub const APPX_E_REQUESTED_RANGE_TOO_LARGE: Self
pub const APPX_E_INVALID_SIP_CLIENT_DATA: Self
pub const APPX_E_INVALID_KEY_INFO: Self
pub const APPX_E_INVALID_CONTENTGROUPMAP: Self
pub const APPX_E_INVALID_APPINSTALLER: Self
pub const APPX_E_DELTA_BASELINE_VERSION_MISMATCH: Self
pub const APPX_E_DELTA_PACKAGE_MISSING_FILE: Self
pub const APPX_E_INVALID_DELTA_PACKAGE: Self
pub const APPX_E_DELTA_APPENDED_PACKAGE_NOT_ALLOWED: Self
pub const APPX_E_INVALID_PACKAGING_LAYOUT: Self
pub const APPX_E_INVALID_PACKAGESIGNCONFIG: Self
pub const APPX_E_RESOURCESPRI_NOT_ALLOWED: Self
pub const APPX_E_FILE_COMPRESSION_MISMATCH: Self
pub const APPX_E_INVALID_PAYLOAD_PACKAGE_EXTENSION: Self
pub const APPX_E_INVALID_ENCRYPTION_EXCLUSION_FILE_LIST: Self
pub const BT_E_SPURIOUS_ACTIVATION: Self
pub const DISP_E_UNKNOWNINTERFACE: Self
pub const DISP_E_MEMBERNOTFOUND: Self
pub const DISP_E_PARAMNOTFOUND: Self
pub const DISP_E_TYPEMISMATCH: Self
pub const DISP_E_UNKNOWNNAME: Self
pub const DISP_E_NONAMEDARGS: Self
pub const DISP_E_BADVARTYPE: Self
pub const DISP_E_EXCEPTION: Self
pub const DISP_E_OVERFLOW: Self
pub const DISP_E_BADINDEX: Self
pub const DISP_E_UNKNOWNLCID: Self
pub const DISP_E_ARRAYISLOCKED: Self
pub const DISP_E_BADPARAMCOUNT: Self
pub const DISP_E_PARAMNOTOPTIONAL: Self
pub const DISP_E_BADCALLEE: Self
pub const DISP_E_NOTACOLLECTION: Self
pub const DISP_E_DIVBYZERO: Self
pub const DISP_E_BUFFERTOOSMALL: Self
pub const TYPE_E_BUFFERTOOSMALL: Self
pub const TYPE_E_FIELDNOTFOUND: Self
pub const TYPE_E_INVDATAREAD: Self
pub const TYPE_E_UNSUPFORMAT: Self
pub const TYPE_E_REGISTRYACCESS: Self
pub const TYPE_E_LIBNOTREGISTERED: Self
pub const TYPE_E_UNDEFINEDTYPE: Self
pub const TYPE_E_QUALIFIEDNAMEDISALLOWED: Self
pub const TYPE_E_INVALIDSTATE: Self
pub const TYPE_E_WRONGTYPEKIND: Self
pub const TYPE_E_ELEMENTNOTFOUND: Self
pub const TYPE_E_AMBIGUOUSNAME: Self
pub const TYPE_E_NAMECONFLICT: Self
pub const TYPE_E_UNKNOWNLCID: Self
pub const TYPE_E_DLLFUNCTIONNOTFOUND: Self
pub const TYPE_E_BADMODULEKIND: Self
pub const TYPE_E_SIZETOOBIG: Self
pub const TYPE_E_DUPLICATEID: Self
pub const TYPE_E_INVALIDID: Self
pub const TYPE_E_TYPEMISMATCH: Self
pub const TYPE_E_OUTOFBOUNDS: Self
pub const TYPE_E_IOERROR: Self
pub const TYPE_E_CANTCREATETMPFILE: Self
pub const TYPE_E_CANTLOADLIBRARY: Self
pub const TYPE_E_INCONSISTENTPROPFUNCS: Self
pub const TYPE_E_CIRCULARTYPE: Self
pub const STG_E_INVALIDFUNCTION: Self
pub const STG_E_FILENOTFOUND: Self
pub const STG_E_PATHNOTFOUND: Self
pub const STG_E_TOOMANYOPENFILES: Self
pub const STG_E_ACCESSDENIED: Self
pub const STG_E_INVALIDHANDLE: Self
pub const STG_E_INSUFFICIENTMEMORY: Self
pub const STG_E_INVALIDPOINTER: Self
pub const STG_E_NOMOREFILES: Self
pub const STG_E_DISKISWRITEPROTECTED: Self
pub const STG_E_SEEKERROR: Self
pub const STG_E_WRITEFAULT: Self
pub const STG_E_READFAULT: Self
pub const STG_E_SHAREVIOLATION: Self
pub const STG_E_LOCKVIOLATION: Self
pub const STG_E_FILEALREADYEXISTS: Self
pub const STG_E_INVALIDPARAMETER: Self
pub const STG_E_MEDIUMFULL: Self
pub const STG_E_PROPSETMISMATCHED: Self
pub const STG_E_ABNORMALAPIEXIT: Self
pub const STG_E_INVALIDHEADER: Self
pub const STG_E_INVALIDNAME: Self
pub const STG_E_UNKNOWN: Self
pub const STG_E_UNIMPLEMENTEDFUNCTION: Self
pub const STG_E_INVALIDFLAG: Self
pub const STG_E_INUSE: Self
pub const STG_E_NOTCURRENT: Self
pub const STG_E_REVERTED: Self
pub const STG_E_CANTSAVE: Self
pub const STG_E_OLDFORMAT: Self
pub const STG_E_OLDDLL: Self
pub const STG_E_SHAREREQUIRED: Self
pub const STG_E_NOTFILEBASEDSTORAGE: Self
pub const STG_E_EXTANTMARSHALLINGS: Self
pub const STG_E_DOCFILECORRUPT: Self
pub const STG_E_BADBASEADDRESS: Self
pub const STG_E_DOCFILETOOLARGE: Self
pub const STG_E_NOTSIMPLEFORMAT: Self
pub const STG_E_INCOMPLETE: Self
pub const STG_E_TERMINATED: Self
pub const STG_S_CONVERTED: Self
pub const STG_S_BLOCK: Self
pub const STG_S_RETRYNOW: Self
pub const STG_S_MONITORING: Self
pub const STG_S_MULTIPLEOPENS: Self
pub const STG_S_CONSOLIDATIONFAILED: Self
pub const STG_S_CANNOTCONSOLIDATE: Self
pub const STG_S_POWER_CYCLE_REQUIRED: Self
pub const STG_E_FIRMWARE_SLOT_INVALID: Self
pub const STG_E_FIRMWARE_IMAGE_INVALID: Self
pub const STG_E_DEVICE_UNRESPONSIVE: Self
pub const STG_E_STATUS_COPY_PROTECTION_FAILURE: Self
pub const STG_E_CSS_AUTHENTICATION_FAILURE: Self
pub const STG_E_CSS_KEY_NOT_PRESENT: Self
pub const STG_E_CSS_KEY_NOT_ESTABLISHED: Self
pub const STG_E_CSS_SCRAMBLED_SECTOR: Self
pub const STG_E_CSS_REGION_MISMATCH: Self
pub const STG_E_RESETS_EXHAUSTED: Self
pub const RPC_E_CALL_REJECTED: Self
pub const RPC_E_CALL_CANCELED: Self
pub const RPC_E_CANTPOST_INSENDCALL: Self
pub const RPC_E_CANTCALLOUT_INASYNCCALL: Self
pub const RPC_E_CANTCALLOUT_INEXTERNALCALL: Self
pub const RPC_E_CONNECTION_TERMINATED: Self
pub const RPC_E_SERVER_DIED: Self
pub const RPC_E_CLIENT_DIED: Self
pub const RPC_E_INVALID_DATAPACKET: Self
pub const RPC_E_CANTTRANSMIT_CALL: Self
pub const RPC_E_CLIENT_CANTMARSHAL_DATA: Self
pub const RPC_E_CLIENT_CANTUNMARSHAL_DATA: Self
pub const RPC_E_SERVER_CANTMARSHAL_DATA: Self
pub const RPC_E_SERVER_CANTUNMARSHAL_DATA: Self
pub const RPC_E_INVALID_DATA: Self
pub const RPC_E_INVALID_PARAMETER: Self
pub const RPC_E_CANTCALLOUT_AGAIN: Self
pub const RPC_E_SERVER_DIED_DNE: Self
pub const RPC_E_SYS_CALL_FAILED: Self
pub const RPC_E_OUT_OF_RESOURCES: Self
pub const RPC_E_ATTEMPTED_MULTITHREAD: Self
pub const RPC_E_NOT_REGISTERED: Self
pub const RPC_E_FAULT: Self
pub const RPC_E_SERVERFAULT: Self
pub const RPC_E_CHANGED_MODE: Self
pub const RPC_E_INVALIDMETHOD: Self
pub const RPC_E_DISCONNECTED: Self
pub const RPC_E_RETRY: Self
pub const RPC_E_SERVERCALL_RETRYLATER: Self
pub const RPC_E_SERVERCALL_REJECTED: Self
pub const RPC_E_INVALID_CALLDATA: Self
pub const RPC_E_CANTCALLOUT_ININPUTSYNCCALL: Self
pub const RPC_E_WRONG_THREAD: Self
pub const RPC_E_THREAD_NOT_INIT: Self
pub const RPC_E_VERSION_MISMATCH: Self
pub const RPC_E_INVALID_HEADER: Self
pub const RPC_E_INVALID_EXTENSION: Self
pub const RPC_E_INVALID_IPID: Self
pub const RPC_E_INVALID_OBJECT: Self
pub const RPC_S_CALLPENDING: Self
pub const RPC_S_WAITONTIMER: Self
pub const RPC_E_CALL_COMPLETE: Self
pub const RPC_E_UNSECURE_CALL: Self
pub const RPC_E_TOO_LATE: Self
pub const RPC_E_NO_GOOD_SECURITY_PACKAGES: Self
pub const RPC_E_ACCESS_DENIED: Self
pub const RPC_E_REMOTE_DISABLED: Self
pub const RPC_E_INVALID_OBJREF: Self
pub const RPC_E_NO_CONTEXT: Self
pub const RPC_E_TIMEOUT: Self
pub const RPC_E_NO_SYNC: Self
pub const RPC_E_FULLSIC_REQUIRED: Self
pub const RPC_E_INVALID_STD_NAME: Self
pub const CO_E_FAILEDTOIMPERSONATE: Self
pub const CO_E_FAILEDTOGETSECCTX: Self
pub const CO_E_FAILEDTOOPENTHREADTOKEN: Self
pub const CO_E_FAILEDTOGETTOKENINFO: Self
pub const CO_E_TRUSTEEDOESNTMATCHCLIENT: Self
pub const CO_E_FAILEDTOQUERYCLIENTBLANKET: Self
pub const CO_E_FAILEDTOSETDACL: Self
pub const CO_E_ACCESSCHECKFAILED: Self
pub const CO_E_NETACCESSAPIFAILED: Self
pub const CO_E_WRONGTRUSTEENAMESYNTAX: Self
pub const CO_E_INVALIDSID: Self
pub const CO_E_CONVERSIONFAILED: Self
pub const CO_E_NOMATCHINGSIDFOUND: Self
pub const CO_E_LOOKUPACCSIDFAILED: Self
pub const CO_E_NOMATCHINGNAMEFOUND: Self
pub const CO_E_LOOKUPACCNAMEFAILED: Self
pub const CO_E_SETSERLHNDLFAILED: Self
pub const CO_E_FAILEDTOGETWINDIR: Self
pub const CO_E_PATHTOOLONG: Self
pub const CO_E_FAILEDTOGENUUID: Self
pub const CO_E_FAILEDTOCREATEFILE: Self
pub const CO_E_FAILEDTOCLOSEHANDLE: Self
pub const CO_E_EXCEEDSYSACLLIMIT: Self
pub const CO_E_ACESINWRONGORDER: Self
pub const CO_E_INCOMPATIBLESTREAMVERSION: Self
pub const CO_E_FAILEDTOOPENPROCESSTOKEN: Self
pub const CO_E_DECODEFAILED: Self
pub const CO_E_ACNOTINITIALIZED: Self
pub const CO_E_CANCEL_DISABLED: Self
pub const RPC_E_UNEXPECTED: Self
pub const ERROR_AUDITING_DISABLED: Self
pub const ERROR_ALL_SIDS_FILTERED: Self
pub const ERROR_BIZRULES_NOT_ENABLED: Self
pub const NTE_BAD_UID: Self
pub const NTE_BAD_HASH: Self
pub const NTE_BAD_KEY: Self
pub const NTE_BAD_LEN: Self
pub const NTE_BAD_DATA: Self
pub const NTE_BAD_SIGNATURE: Self
pub const NTE_BAD_VER: Self
pub const NTE_BAD_ALGID: Self
pub const NTE_BAD_FLAGS: Self
pub const NTE_BAD_TYPE: Self
pub const NTE_BAD_KEY_STATE: Self
pub const NTE_BAD_HASH_STATE: Self
pub const NTE_NO_KEY: Self
pub const NTE_NO_MEMORY: Self
pub const NTE_EXISTS: Self
pub const NTE_PERM: Self
pub const NTE_NOT_FOUND: Self
pub const NTE_DOUBLE_ENCRYPT: Self
pub const NTE_BAD_PROVIDER: Self
pub const NTE_BAD_PROV_TYPE: Self
pub const NTE_BAD_PUBLIC_KEY: Self
pub const NTE_BAD_KEYSET: Self
pub const NTE_PROV_TYPE_NOT_DEF: Self
pub const NTE_PROV_TYPE_ENTRY_BAD: Self
pub const NTE_KEYSET_NOT_DEF: Self
pub const NTE_KEYSET_ENTRY_BAD: Self
pub const NTE_PROV_TYPE_NO_MATCH: Self
pub const NTE_SIGNATURE_FILE_BAD: Self
pub const NTE_PROVIDER_DLL_FAIL: Self
pub const NTE_PROV_DLL_NOT_FOUND: Self
pub const NTE_BAD_KEYSET_PARAM: Self
pub const NTE_FAIL: Self
pub const NTE_SYS_ERR: Self
pub const NTE_SILENT_CONTEXT: Self
pub const NTE_TOKEN_KEYSET_STORAGE_FULL: Self
pub const NTE_TEMPORARY_PROFILE: Self
pub const NTE_FIXEDPARAMETER: Self
pub const NTE_INVALID_HANDLE: Self
pub const NTE_INVALID_PARAMETER: Self
pub const NTE_BUFFER_TOO_SMALL: Self
pub const NTE_NOT_SUPPORTED: Self
pub const NTE_NO_MORE_ITEMS: Self
pub const NTE_BUFFERS_OVERLAP: Self
pub const NTE_DECRYPTION_FAILURE: Self
pub const NTE_INTERNAL_ERROR: Self
pub const NTE_UI_REQUIRED: Self
pub const NTE_HMAC_NOT_SUPPORTED: Self
pub const NTE_DEVICE_NOT_READY: Self
pub const NTE_AUTHENTICATION_IGNORED: Self
pub const NTE_VALIDATION_FAILED: Self
pub const NTE_INCORRECT_PASSWORD: Self
pub const NTE_ENCRYPTION_FAILURE: Self
pub const NTE_DEVICE_NOT_FOUND: Self
pub const NTE_USER_CANCELLED: Self
pub const NTE_PASSWORD_CHANGE_REQUIRED: Self
pub const NTE_NOT_ACTIVE_CONSOLE: Self
pub const SEC_E_INSUFFICIENT_MEMORY: Self
pub const SEC_E_INVALID_HANDLE: Self
pub const SEC_E_UNSUPPORTED_FUNCTION: Self
pub const SEC_E_TARGET_UNKNOWN: Self
pub const SEC_E_INTERNAL_ERROR: Self
pub const SEC_E_SECPKG_NOT_FOUND: Self
pub const SEC_E_NOT_OWNER: Self
pub const SEC_E_CANNOT_INSTALL: Self
pub const SEC_E_INVALID_TOKEN: Self
pub const SEC_E_CANNOT_PACK: Self
pub const SEC_E_QOP_NOT_SUPPORTED: Self
pub const SEC_E_NO_IMPERSONATION: Self
pub const SEC_E_LOGON_DENIED: Self
pub const SEC_E_UNKNOWN_CREDENTIALS: Self
pub const SEC_E_NO_CREDENTIALS: Self
pub const SEC_E_MESSAGE_ALTERED: Self
pub const SEC_E_OUT_OF_SEQUENCE: Self
pub const SEC_E_NO_AUTHENTICATING_AUTHORITY: Self
pub const SEC_I_CONTINUE_NEEDED: Self
pub const SEC_I_COMPLETE_NEEDED: Self
pub const SEC_I_COMPLETE_AND_CONTINUE: Self
pub const SEC_I_LOCAL_LOGON: Self
pub const SEC_I_GENERIC_EXTENSION_RECEIVED: Self
pub const SEC_E_BAD_PKGID: Self
pub const SEC_E_CONTEXT_EXPIRED: Self
pub const SEC_I_CONTEXT_EXPIRED: Self
pub const SEC_E_INCOMPLETE_MESSAGE: Self
pub const SEC_E_INCOMPLETE_CREDENTIALS: Self
pub const SEC_E_BUFFER_TOO_SMALL: Self
pub const SEC_I_INCOMPLETE_CREDENTIALS: Self
pub const SEC_I_RENEGOTIATE: Self
pub const SEC_E_WRONG_PRINCIPAL: Self
pub const SEC_I_NO_LSA_CONTEXT: Self
pub const SEC_E_TIME_SKEW: Self
pub const SEC_E_UNTRUSTED_ROOT: Self
pub const SEC_E_ILLEGAL_MESSAGE: Self
pub const SEC_E_CERT_UNKNOWN: Self
pub const SEC_E_CERT_EXPIRED: Self
pub const SEC_E_ENCRYPT_FAILURE: Self
pub const SEC_E_DECRYPT_FAILURE: Self
pub const SEC_E_ALGORITHM_MISMATCH: Self
pub const SEC_E_SECURITY_QOS_FAILED: Self
pub const SEC_E_UNFINISHED_CONTEXT_DELETED: Self
pub const SEC_E_NO_TGT_REPLY: Self
pub const SEC_E_NO_IP_ADDRESSES: Self
pub const SEC_E_WRONG_CREDENTIAL_HANDLE: Self
pub const SEC_E_CRYPTO_SYSTEM_INVALID: Self
pub const SEC_E_MAX_REFERRALS_EXCEEDED: Self
pub const SEC_E_MUST_BE_KDC: Self
pub const SEC_E_STRONG_CRYPTO_NOT_SUPPORTED: Self
pub const SEC_E_TOO_MANY_PRINCIPALS: Self
pub const SEC_E_NO_PA_DATA: Self
pub const SEC_E_PKINIT_NAME_MISMATCH: Self
pub const SEC_E_SMARTCARD_LOGON_REQUIRED: Self
pub const SEC_E_SHUTDOWN_IN_PROGRESS: Self
pub const SEC_E_KDC_INVALID_REQUEST: Self
pub const SEC_E_KDC_UNABLE_TO_REFER: Self
pub const SEC_E_KDC_UNKNOWN_ETYPE: Self
pub const SEC_E_UNSUPPORTED_PREAUTH: Self
pub const SEC_E_DELEGATION_REQUIRED: Self
pub const SEC_E_BAD_BINDINGS: Self
pub const SEC_E_MULTIPLE_ACCOUNTS: Self
pub const SEC_E_NO_KERB_KEY: Self
pub const SEC_E_CERT_WRONG_USAGE: Self
pub const SEC_E_DOWNGRADE_DETECTED: Self
pub const SEC_E_SMARTCARD_CERT_REVOKED: Self
pub const SEC_E_ISSUING_CA_UNTRUSTED: Self
pub const SEC_E_REVOCATION_OFFLINE_C: Self
pub const SEC_E_PKINIT_CLIENT_FAILURE: Self
pub const SEC_E_SMARTCARD_CERT_EXPIRED: Self
pub const SEC_E_NO_S4U_PROT_SUPPORT: Self
pub const SEC_E_CROSSREALM_DELEGATION_FAILURE: Self
pub const SEC_E_REVOCATION_OFFLINE_KDC: Self
pub const SEC_E_ISSUING_CA_UNTRUSTED_KDC: Self
pub const SEC_E_KDC_CERT_EXPIRED: Self
pub const SEC_E_KDC_CERT_REVOKED: Self
pub const SEC_I_SIGNATURE_NEEDED: Self
pub const SEC_E_INVALID_PARAMETER: Self
pub const SEC_E_DELEGATION_POLICY: Self
pub const SEC_E_POLICY_NLTM_ONLY: Self
pub const SEC_I_NO_RENEGOTIATION: Self
pub const SEC_E_NO_CONTEXT: Self
pub const SEC_E_PKU2U_CERT_FAILURE: Self
pub const SEC_E_MUTUAL_AUTH_FAILED: Self
pub const SEC_I_MESSAGE_FRAGMENT: Self
pub const SEC_E_ONLY_HTTPS_ALLOWED: Self
pub const SEC_I_CONTINUE_NEEDED_MESSAGE_OK: Self
pub const SEC_E_APPLICATION_PROTOCOL_MISMATCH: Self
pub const SEC_I_ASYNC_CALL_PENDING: Self
pub const SEC_E_INVALID_UPN_NAME: Self
pub const SEC_E_EXT_BUFFER_TOO_SMALL: Self
pub const SEC_E_INSUFFICIENT_BUFFERS: Self
pub const CRYPT_E_MSG_ERROR: Self
pub const CRYPT_E_UNKNOWN_ALGO: Self
pub const CRYPT_E_OID_FORMAT: Self
pub const CRYPT_E_INVALID_MSG_TYPE: Self
pub const CRYPT_E_UNEXPECTED_ENCODING: Self
pub const CRYPT_E_AUTH_ATTR_MISSING: Self
pub const CRYPT_E_HASH_VALUE: Self
pub const CRYPT_E_INVALID_INDEX: Self
pub const CRYPT_E_ALREADY_DECRYPTED: Self
pub const CRYPT_E_NOT_DECRYPTED: Self
pub const CRYPT_E_RECIPIENT_NOT_FOUND: Self
pub const CRYPT_E_CONTROL_TYPE: Self
pub const CRYPT_E_ISSUER_SERIALNUMBER: Self
pub const CRYPT_E_SIGNER_NOT_FOUND: Self
pub const CRYPT_E_ATTRIBUTES_MISSING: Self
pub const CRYPT_E_STREAM_MSG_NOT_READY: Self
pub const CRYPT_E_STREAM_INSUFFICIENT_DATA: Self
pub const CRYPT_I_NEW_PROTECTION_REQUIRED: Self
pub const CRYPT_E_BAD_LEN: Self
pub const CRYPT_E_BAD_ENCODE: Self
pub const CRYPT_E_FILE_ERROR: Self
pub const CRYPT_E_NOT_FOUND: Self
pub const CRYPT_E_EXISTS: Self
pub const CRYPT_E_NO_PROVIDER: Self
pub const CRYPT_E_SELF_SIGNED: Self
pub const CRYPT_E_DELETED_PREV: Self
pub const CRYPT_E_NO_MATCH: Self
pub const CRYPT_E_UNEXPECTED_MSG_TYPE: Self
pub const CRYPT_E_NO_KEY_PROPERTY: Self
pub const CRYPT_E_NO_DECRYPT_CERT: Self
pub const CRYPT_E_BAD_MSG: Self
pub const CRYPT_E_NO_SIGNER: Self
pub const CRYPT_E_PENDING_CLOSE: Self
pub const CRYPT_E_REVOKED: Self
pub const CRYPT_E_NO_REVOCATION_DLL: Self
pub const CRYPT_E_NO_REVOCATION_CHECK: Self
pub const CRYPT_E_REVOCATION_OFFLINE: Self
pub const CRYPT_E_NOT_IN_REVOCATION_DATABASE: Self
pub const CRYPT_E_INVALID_NUMERIC_STRING: Self
pub const CRYPT_E_INVALID_PRINTABLE_STRING: Self
pub const CRYPT_E_INVALID_IA5_STRING: Self
pub const CRYPT_E_INVALID_X500_STRING: Self
pub const CRYPT_E_NOT_CHAR_STRING: Self
pub const CRYPT_E_FILERESIZED: Self
pub const CRYPT_E_SECURITY_SETTINGS: Self
pub const CRYPT_E_NO_VERIFY_USAGE_DLL: Self
pub const CRYPT_E_NO_VERIFY_USAGE_CHECK: Self
pub const CRYPT_E_VERIFY_USAGE_OFFLINE: Self
pub const CRYPT_E_NOT_IN_CTL: Self
pub const CRYPT_E_NO_TRUSTED_SIGNER: Self
pub const CRYPT_E_MISSING_PUBKEY_PARA: Self
pub const CRYPT_E_OBJECT_LOCATOR_OBJECT_NOT_FOUND: Self
pub const CRYPT_E_OSS_ERROR: Self
pub const OSS_MORE_BUF: Self
pub const OSS_NEGATIVE_UINTEGER: Self
pub const OSS_PDU_RANGE: Self
pub const OSS_MORE_INPUT: Self
pub const OSS_DATA_ERROR: Self
pub const OSS_BAD_ARG: Self
pub const OSS_BAD_VERSION: Self
pub const OSS_OUT_MEMORY: Self
pub const OSS_PDU_MISMATCH: Self
pub const OSS_LIMITED: Self
pub const OSS_BAD_PTR: Self
pub const OSS_BAD_TIME: Self
pub const OSS_INDEFINITE_NOT_SUPPORTED: Self
pub const OSS_MEM_ERROR: Self
pub const OSS_BAD_TABLE: Self
pub const OSS_TOO_LONG: Self
pub const OSS_CONSTRAINT_VIOLATED: Self
pub const OSS_FATAL_ERROR: Self
pub const OSS_ACCESS_SERIALIZATION_ERROR: Self
pub const OSS_NULL_TBL: Self
pub const OSS_NULL_FCN: Self
pub const OSS_BAD_ENCRULES: Self
pub const OSS_UNAVAIL_ENCRULES: Self
pub const OSS_CANT_OPEN_TRACE_WINDOW: Self
pub const OSS_UNIMPLEMENTED: Self
pub const OSS_OID_DLL_NOT_LINKED: Self
pub const OSS_CANT_OPEN_TRACE_FILE: Self
pub const OSS_TRACE_FILE_ALREADY_OPEN: Self
pub const OSS_TABLE_MISMATCH: Self
pub const OSS_TYPE_NOT_SUPPORTED: Self
pub const OSS_REAL_DLL_NOT_LINKED: Self
pub const OSS_REAL_CODE_NOT_LINKED: Self
pub const OSS_OUT_OF_RANGE: Self
pub const OSS_COPIER_DLL_NOT_LINKED: Self
pub const OSS_CONSTRAINT_DLL_NOT_LINKED: Self
pub const OSS_COMPARATOR_DLL_NOT_LINKED: Self
pub const OSS_COMPARATOR_CODE_NOT_LINKED: Self
pub const OSS_MEM_MGR_DLL_NOT_LINKED: Self
pub const OSS_PDV_DLL_NOT_LINKED: Self
pub const OSS_PDV_CODE_NOT_LINKED: Self
pub const OSS_API_DLL_NOT_LINKED: Self
pub const OSS_BERDER_DLL_NOT_LINKED: Self
pub const OSS_PER_DLL_NOT_LINKED: Self
pub const OSS_OPEN_TYPE_ERROR: Self
pub const OSS_MUTEX_NOT_CREATED: Self
pub const OSS_CANT_CLOSE_TRACE_FILE: Self
pub const CRYPT_E_ASN1_ERROR: Self
pub const CRYPT_E_ASN1_INTERNAL: Self
pub const CRYPT_E_ASN1_EOD: Self
pub const CRYPT_E_ASN1_CORRUPT: Self
pub const CRYPT_E_ASN1_LARGE: Self
pub const CRYPT_E_ASN1_CONSTRAINT: Self
pub const CRYPT_E_ASN1_MEMORY: Self
pub const CRYPT_E_ASN1_OVERFLOW: Self
pub const CRYPT_E_ASN1_BADPDU: Self
pub const CRYPT_E_ASN1_BADARGS: Self
pub const CRYPT_E_ASN1_BADREAL: Self
pub const CRYPT_E_ASN1_BADTAG: Self
pub const CRYPT_E_ASN1_CHOICE: Self
pub const CRYPT_E_ASN1_RULE: Self
pub const CRYPT_E_ASN1_UTF8: Self
pub const CRYPT_E_ASN1_PDU_TYPE: Self
pub const CRYPT_E_ASN1_NYI: Self
pub const CRYPT_E_ASN1_EXTENDED: Self
pub const CRYPT_E_ASN1_NOEOD: Self
pub const CERTSRV_E_BAD_REQUESTSUBJECT: Self
pub const CERTSRV_E_NO_REQUEST: Self
pub const CERTSRV_E_BAD_REQUESTSTATUS: Self
pub const CERTSRV_E_PROPERTY_EMPTY: Self
pub const CERTSRV_E_INVALID_CA_CERTIFICATE: Self
pub const CERTSRV_E_SERVER_SUSPENDED: Self
pub const CERTSRV_E_ENCODING_LENGTH: Self
pub const CERTSRV_E_ROLECONFLICT: Self
pub const CERTSRV_E_RESTRICTEDOFFICER: Self
pub const CERTSRV_E_KEY_ARCHIVAL_NOT_CONFIGURED: Self
pub const CERTSRV_E_NO_VALID_KRA: Self
pub const CERTSRV_E_BAD_REQUEST_KEY_ARCHIVAL: Self
pub const CERTSRV_E_NO_CAADMIN_DEFINED: Self
pub const CERTSRV_E_BAD_RENEWAL_CERT_ATTRIBUTE: Self
pub const CERTSRV_E_NO_DB_SESSIONS: Self
pub const CERTSRV_E_ALIGNMENT_FAULT: Self
pub const CERTSRV_E_ENROLL_DENIED: Self
pub const CERTSRV_E_TEMPLATE_DENIED: Self
pub const CERTSRV_E_DOWNLEVEL_DC_SSL_OR_UPGRADE: Self
pub const CERTSRV_E_ADMIN_DENIED_REQUEST: Self
pub const CERTSRV_E_NO_POLICY_SERVER: Self
pub const CERTSRV_E_WEAK_SIGNATURE_OR_KEY: Self
pub const CERTSRV_E_KEY_ATTESTATION_NOT_SUPPORTED: Self
pub const CERTSRV_E_ENCRYPTION_CERT_REQUIRED: Self
pub const CERTSRV_E_UNSUPPORTED_CERT_TYPE: Self
pub const CERTSRV_E_NO_CERT_TYPE: Self
pub const CERTSRV_E_TEMPLATE_CONFLICT: Self
pub const CERTSRV_E_SUBJECT_ALT_NAME_REQUIRED: Self
pub const CERTSRV_E_ARCHIVED_KEY_REQUIRED: Self
pub const CERTSRV_E_SMIME_REQUIRED: Self
pub const CERTSRV_E_BAD_RENEWAL_SUBJECT: Self
pub const CERTSRV_E_BAD_TEMPLATE_VERSION: Self
pub const CERTSRV_E_TEMPLATE_POLICY_REQUIRED: Self
pub const CERTSRV_E_SIGNATURE_POLICY_REQUIRED: Self
pub const CERTSRV_E_SIGNATURE_COUNT: Self
pub const CERTSRV_E_SIGNATURE_REJECTED: Self
pub const CERTSRV_E_ISSUANCE_POLICY_REQUIRED: Self
pub const CERTSRV_E_SUBJECT_UPN_REQUIRED: Self
pub const CERTSRV_E_SUBJECT_DIRECTORY_GUID_REQUIRED: Self
pub const CERTSRV_E_SUBJECT_DNS_REQUIRED: Self
pub const CERTSRV_E_ARCHIVED_KEY_UNEXPECTED: Self
pub const CERTSRV_E_KEY_LENGTH: Self
pub const CERTSRV_E_SUBJECT_EMAIL_REQUIRED: Self
pub const CERTSRV_E_UNKNOWN_CERT_TYPE: Self
pub const CERTSRV_E_CERT_TYPE_OVERLAP: Self
pub const CERTSRV_E_TOO_MANY_SIGNATURES: Self
pub const CERTSRV_E_RENEWAL_BAD_PUBLIC_KEY: Self
pub const CERTSRV_E_INVALID_EK: Self
pub const CERTSRV_E_INVALID_IDBINDING: Self
pub const CERTSRV_E_INVALID_ATTESTATION: Self
pub const CERTSRV_E_KEY_ATTESTATION: Self
pub const CERTSRV_E_CORRUPT_KEY_ATTESTATION: Self
pub const CERTSRV_E_EXPIRED_CHALLENGE: Self
pub const CERTSRV_E_INVALID_RESPONSE: Self
pub const CERTSRV_E_INVALID_REQUESTID: Self
pub const CERTSRV_E_REQUEST_PRECERTIFICATE_MISMATCH: Self
pub const CERTSRV_E_PENDING_CLIENT_RESPONSE: Self
pub const XENROLL_E_KEY_NOT_EXPORTABLE: Self
pub const XENROLL_E_CANNOT_ADD_ROOT_CERT: Self
pub const XENROLL_E_RESPONSE_KA_HASH_NOT_FOUND: Self
pub const XENROLL_E_RESPONSE_UNEXPECTED_KA_HASH: Self
pub const XENROLL_E_RESPONSE_KA_HASH_MISMATCH: Self
pub const XENROLL_E_KEYSPEC_SMIME_MISMATCH: Self
pub const TRUST_E_SYSTEM_ERROR: Self
pub const TRUST_E_NO_SIGNER_CERT: Self
pub const TRUST_E_COUNTER_SIGNER: Self
pub const TRUST_E_CERT_SIGNATURE: Self
pub const TRUST_E_TIME_STAMP: Self
pub const TRUST_E_BAD_DIGEST: Self
pub const TRUST_E_MALFORMED_SIGNATURE: Self
pub const TRUST_E_BASIC_CONSTRAINTS: Self
pub const TRUST_E_FINANCIAL_CRITERIA: Self
pub const MSSIPOTF_E_OUTOFMEMRANGE: Self
pub const MSSIPOTF_E_CANTGETOBJECT: Self
pub const MSSIPOTF_E_NOHEADTABLE: Self
pub const MSSIPOTF_E_BAD_MAGICNUMBER: Self
pub const MSSIPOTF_E_BAD_OFFSET_TABLE: Self
pub const MSSIPOTF_E_TABLE_TAGORDER: Self
pub const MSSIPOTF_E_TABLE_LONGWORD: Self
pub const MSSIPOTF_E_BAD_FIRST_TABLE_PLACEMENT: Self
pub const MSSIPOTF_E_TABLES_OVERLAP: Self
pub const MSSIPOTF_E_TABLE_PADBYTES: Self
pub const MSSIPOTF_E_FILETOOSMALL: Self
pub const MSSIPOTF_E_TABLE_CHECKSUM: Self
pub const MSSIPOTF_E_FILE_CHECKSUM: Self
pub const MSSIPOTF_E_FAILED_POLICY: Self
pub const MSSIPOTF_E_FAILED_HINTS_CHECK: Self
pub const MSSIPOTF_E_NOT_OPENTYPE: Self
pub const MSSIPOTF_E_FILE: Self
pub const MSSIPOTF_E_CRYPT: Self
pub const MSSIPOTF_E_BADVERSION: Self
pub const MSSIPOTF_E_DSIG_STRUCTURE: Self
pub const MSSIPOTF_E_PCONST_CHECK: Self
pub const MSSIPOTF_E_STRUCTURE: Self
pub const ERROR_CRED_REQUIRES_CONFIRMATION: Self
pub const TRUST_E_PROVIDER_UNKNOWN: Self
pub const TRUST_E_ACTION_UNKNOWN: Self
pub const TRUST_E_SUBJECT_FORM_UNKNOWN: Self
pub const TRUST_E_SUBJECT_NOT_TRUSTED: Self
pub const DIGSIG_E_ENCODE: Self
pub const DIGSIG_E_DECODE: Self
pub const DIGSIG_E_EXTENSIBILITY: Self
pub const DIGSIG_E_CRYPTO: Self
pub const PERSIST_E_SIZEDEFINITE: Self
pub const PERSIST_E_SIZEINDEFINITE: Self
pub const PERSIST_E_NOTSELFSIZING: Self
pub const TRUST_E_NOSIGNATURE: Self
pub const CERT_E_EXPIRED: Self
pub const CERT_E_VALIDITYPERIODNESTING: Self
pub const CERT_E_ROLE: Self
pub const CERT_E_PATHLENCONST: Self
pub const CERT_E_CRITICAL: Self
pub const CERT_E_PURPOSE: Self
pub const CERT_E_ISSUERCHAINING: Self
pub const CERT_E_MALFORMED: Self
pub const CERT_E_UNTRUSTEDROOT: Self
pub const CERT_E_CHAINING: Self
pub const TRUST_E_FAIL: Self
pub const CERT_E_REVOKED: Self
pub const CERT_E_UNTRUSTEDTESTROOT: Self
pub const CERT_E_REVOCATION_FAILURE: Self
pub const CERT_E_CN_NO_MATCH: Self
pub const CERT_E_WRONG_USAGE: Self
pub const TRUST_E_EXPLICIT_DISTRUST: Self
pub const CERT_E_UNTRUSTEDCA: Self
pub const CERT_E_INVALID_POLICY: Self
pub const CERT_E_INVALID_NAME: Self
pub const SPAPI_E_EXPECTED_SECTION_NAME: Self
pub const SPAPI_E_BAD_SECTION_NAME_LINE: Self
pub const SPAPI_E_SECTION_NAME_TOO_LONG: Self
pub const SPAPI_E_GENERAL_SYNTAX: Self
pub const SPAPI_E_WRONG_INF_STYLE: Self
pub const SPAPI_E_SECTION_NOT_FOUND: Self
pub const SPAPI_E_LINE_NOT_FOUND: Self
pub const SPAPI_E_NO_BACKUP: Self
pub const SPAPI_E_NO_ASSOCIATED_CLASS: Self
pub const SPAPI_E_CLASS_MISMATCH: Self
pub const SPAPI_E_DUPLICATE_FOUND: Self
pub const SPAPI_E_NO_DRIVER_SELECTED: Self
pub const SPAPI_E_KEY_DOES_NOT_EXIST: Self
pub const SPAPI_E_INVALID_DEVINST_NAME: Self
pub const SPAPI_E_INVALID_CLASS: Self
pub const SPAPI_E_DEVINST_ALREADY_EXISTS: Self
pub const SPAPI_E_DEVINFO_NOT_REGISTERED: Self
pub const SPAPI_E_INVALID_REG_PROPERTY: Self
pub const SPAPI_E_NO_INF: Self
pub const SPAPI_E_NO_SUCH_DEVINST: Self
pub const SPAPI_E_CANT_LOAD_CLASS_ICON: Self
pub const SPAPI_E_INVALID_CLASS_INSTALLER: Self
pub const SPAPI_E_DI_DO_DEFAULT: Self
pub const SPAPI_E_DI_NOFILECOPY: Self
pub const SPAPI_E_INVALID_HWPROFILE: Self
pub const SPAPI_E_NO_DEVICE_SELECTED: Self
pub const SPAPI_E_DEVINFO_LIST_LOCKED: Self
pub const SPAPI_E_DEVINFO_DATA_LOCKED: Self
pub const SPAPI_E_DI_BAD_PATH: Self
pub const SPAPI_E_NO_CLASSINSTALL_PARAMS: Self
pub const SPAPI_E_FILEQUEUE_LOCKED: Self
pub const SPAPI_E_BAD_SERVICE_INSTALLSECT: Self
pub const SPAPI_E_NO_CLASS_DRIVER_LIST: Self
pub const SPAPI_E_NO_ASSOCIATED_SERVICE: Self
pub const SPAPI_E_NO_DEFAULT_DEVICE_INTERFACE: Self
pub const SPAPI_E_DEVICE_INTERFACE_ACTIVE: Self
pub const SPAPI_E_DEVICE_INTERFACE_REMOVED: Self
pub const SPAPI_E_BAD_INTERFACE_INSTALLSECT: Self
pub const SPAPI_E_NO_SUCH_INTERFACE_CLASS: Self
pub const SPAPI_E_INVALID_REFERENCE_STRING: Self
pub const SPAPI_E_INVALID_MACHINENAME: Self
pub const SPAPI_E_REMOTE_COMM_FAILURE: Self
pub const SPAPI_E_MACHINE_UNAVAILABLE: Self
pub const SPAPI_E_NO_CONFIGMGR_SERVICES: Self
pub const SPAPI_E_INVALID_PROPPAGE_PROVIDER: Self
pub const SPAPI_E_NO_SUCH_DEVICE_INTERFACE: Self
pub const SPAPI_E_DI_POSTPROCESSING_REQUIRED: Self
pub const SPAPI_E_INVALID_COINSTALLER: Self
pub const SPAPI_E_NO_COMPAT_DRIVERS: Self
pub const SPAPI_E_NO_DEVICE_ICON: Self
pub const SPAPI_E_INVALID_INF_LOGCONFIG: Self
pub const SPAPI_E_DI_DONT_INSTALL: Self
pub const SPAPI_E_INVALID_FILTER_DRIVER: Self
pub const SPAPI_E_NON_WINDOWS_NT_DRIVER: Self
pub const SPAPI_E_NON_WINDOWS_DRIVER: Self
pub const SPAPI_E_NO_CATALOG_FOR_OEM_INF: Self
pub const SPAPI_E_DEVINSTALL_QUEUE_NONNATIVE: Self
pub const SPAPI_E_NOT_DISABLEABLE: Self
pub const SPAPI_E_CANT_REMOVE_DEVINST: Self
pub const SPAPI_E_INVALID_TARGET: Self
pub const SPAPI_E_DRIVER_NONNATIVE: Self
pub const SPAPI_E_IN_WOW64: Self
pub const SPAPI_E_SET_SYSTEM_RESTORE_POINT: Self
pub const SPAPI_E_INCORRECTLY_COPIED_INF: Self
pub const SPAPI_E_SCE_DISABLED: Self
pub const SPAPI_E_UNKNOWN_EXCEPTION: Self
pub const SPAPI_E_PNP_REGISTRY_ERROR: Self
pub const SPAPI_E_REMOTE_REQUEST_UNSUPPORTED: Self
pub const SPAPI_E_NOT_AN_INSTALLED_OEM_INF: Self
pub const SPAPI_E_INF_IN_USE_BY_DEVICES: Self
pub const SPAPI_E_DI_FUNCTION_OBSOLETE: Self
pub const SPAPI_E_NO_AUTHENTICODE_CATALOG: Self
pub const SPAPI_E_AUTHENTICODE_DISALLOWED: Self
pub const SPAPI_E_AUTHENTICODE_TRUSTED_PUBLISHER: Self
pub const SPAPI_E_AUTHENTICODE_TRUST_NOT_ESTABLISHED: Self
pub const SPAPI_E_AUTHENTICODE_PUBLISHER_NOT_TRUSTED: Self
pub const SPAPI_E_SIGNATURE_OSATTRIBUTE_MISMATCH: Self
pub const SPAPI_E_ONLY_VALIDATE_VIA_AUTHENTICODE: Self
pub const SPAPI_E_DEVICE_INSTALLER_NOT_READY: Self
pub const SPAPI_E_DRIVER_STORE_ADD_FAILED: Self
pub const SPAPI_E_DEVICE_INSTALL_BLOCKED: Self
pub const SPAPI_E_DRIVER_INSTALL_BLOCKED: Self
pub const SPAPI_E_WRONG_INF_TYPE: Self
pub const SPAPI_E_FILE_HASH_NOT_IN_CATALOG: Self
pub const SPAPI_E_DRIVER_STORE_DELETE_FAILED: Self
pub const SPAPI_E_UNRECOVERABLE_STACK_OVERFLOW: Self
pub const SPAPI_E_ERROR_NOT_INSTALLED: Self
pub const SCARD_F_INTERNAL_ERROR: Self
pub const SCARD_E_CANCELLED: Self
pub const SCARD_E_INVALID_HANDLE: Self
pub const SCARD_E_INVALID_PARAMETER: Self
pub const SCARD_E_INVALID_TARGET: Self
pub const SCARD_E_NO_MEMORY: Self
pub const SCARD_F_WAITED_TOO_LONG: Self
pub const SCARD_E_INSUFFICIENT_BUFFER: Self
pub const SCARD_E_UNKNOWN_READER: Self
pub const SCARD_E_TIMEOUT: Self
pub const SCARD_E_SHARING_VIOLATION: Self
pub const SCARD_E_NO_SMARTCARD: Self
pub const SCARD_E_UNKNOWN_CARD: Self
pub const SCARD_E_CANT_DISPOSE: Self
pub const SCARD_E_PROTO_MISMATCH: Self
pub const SCARD_E_NOT_READY: Self
pub const SCARD_E_INVALID_VALUE: Self
pub const SCARD_E_SYSTEM_CANCELLED: Self
pub const SCARD_F_COMM_ERROR: Self
pub const SCARD_F_UNKNOWN_ERROR: Self
pub const SCARD_E_INVALID_ATR: Self
pub const SCARD_E_NOT_TRANSACTED: Self
pub const SCARD_E_READER_UNAVAILABLE: Self
pub const SCARD_P_SHUTDOWN: Self
pub const SCARD_E_PCI_TOO_SMALL: Self
pub const SCARD_E_READER_UNSUPPORTED: Self
pub const SCARD_E_DUPLICATE_READER: Self
pub const SCARD_E_CARD_UNSUPPORTED: Self
pub const SCARD_E_NO_SERVICE: Self
pub const SCARD_E_SERVICE_STOPPED: Self
pub const SCARD_E_UNEXPECTED: Self
pub const SCARD_E_ICC_INSTALLATION: Self
pub const SCARD_E_ICC_CREATEORDER: Self
pub const SCARD_E_UNSUPPORTED_FEATURE: Self
pub const SCARD_E_DIR_NOT_FOUND: Self
pub const SCARD_E_FILE_NOT_FOUND: Self
pub const SCARD_E_NO_DIR: Self
pub const SCARD_E_NO_FILE: Self
pub const SCARD_E_NO_ACCESS: Self
pub const SCARD_E_WRITE_TOO_MANY: Self
pub const SCARD_E_BAD_SEEK: Self
pub const SCARD_E_INVALID_CHV: Self
pub const SCARD_E_UNKNOWN_RES_MNG: Self
pub const SCARD_E_NO_SUCH_CERTIFICATE: Self
pub const SCARD_E_CERTIFICATE_UNAVAILABLE: Self
pub const SCARD_E_NO_READERS_AVAILABLE: Self
pub const SCARD_E_COMM_DATA_LOST: Self
pub const SCARD_E_NO_KEY_CONTAINER: Self
pub const SCARD_E_SERVER_TOO_BUSY: Self
pub const SCARD_E_PIN_CACHE_EXPIRED: Self
pub const SCARD_E_NO_PIN_CACHE: Self
pub const SCARD_E_READ_ONLY_CARD: Self
pub const SCARD_W_UNSUPPORTED_CARD: Self
pub const SCARD_W_UNRESPONSIVE_CARD: Self
pub const SCARD_W_UNPOWERED_CARD: Self
pub const SCARD_W_RESET_CARD: Self
pub const SCARD_W_REMOVED_CARD: Self
pub const SCARD_W_SECURITY_VIOLATION: Self
pub const SCARD_W_WRONG_CHV: Self
pub const SCARD_W_CHV_BLOCKED: Self
pub const SCARD_W_EOF: Self
pub const SCARD_W_CANCELLED_BY_USER: Self
pub const SCARD_W_CARD_NOT_AUTHENTICATED: Self
pub const SCARD_W_CACHE_ITEM_NOT_FOUND: Self
pub const SCARD_W_CACHE_ITEM_STALE: Self
pub const SCARD_W_CACHE_ITEM_TOO_BIG: Self
pub const COMADMIN_E_OBJECTERRORS: Self
pub const COMADMIN_E_OBJECTINVALID: Self
pub const COMADMIN_E_KEYMISSING: Self
pub const COMADMIN_E_ALREADYINSTALLED: Self
pub const COMADMIN_E_APP_FILE_WRITEFAIL: Self
pub const COMADMIN_E_APP_FILE_READFAIL: Self
pub const COMADMIN_E_APP_FILE_VERSION: Self
pub const COMADMIN_E_BADPATH: Self
pub const COMADMIN_E_APPLICATIONEXISTS: Self
pub const COMADMIN_E_ROLEEXISTS: Self
pub const COMADMIN_E_CANTCOPYFILE: Self
pub const COMADMIN_E_NOUSER: Self
pub const COMADMIN_E_INVALIDUSERIDS: Self
pub const COMADMIN_E_NOREGISTRYCLSID: Self
pub const COMADMIN_E_BADREGISTRYPROGID: Self
pub const COMADMIN_E_AUTHENTICATIONLEVEL: Self
pub const COMADMIN_E_USERPASSWDNOTVALID: Self
pub const COMADMIN_E_CLSIDORIIDMISMATCH: Self
pub const COMADMIN_E_REMOTEINTERFACE: Self
pub const COMADMIN_E_DLLREGISTERSERVER: Self
pub const COMADMIN_E_NOSERVERSHARE: Self
pub const COMADMIN_E_DLLLOADFAILED: Self
pub const COMADMIN_E_BADREGISTRYLIBID: Self
pub const COMADMIN_E_APPDIRNOTFOUND: Self
pub const COMADMIN_E_REGISTRARFAILED: Self
pub const COMADMIN_E_COMPFILE_DOESNOTEXIST: Self
pub const COMADMIN_E_COMPFILE_LOADDLLFAIL: Self
pub const COMADMIN_E_COMPFILE_GETCLASSOBJ: Self
pub const COMADMIN_E_COMPFILE_CLASSNOTAVAIL: Self
pub const COMADMIN_E_COMPFILE_BADTLB: Self
pub const COMADMIN_E_COMPFILE_NOTINSTALLABLE: Self
pub const COMADMIN_E_NOTCHANGEABLE: Self
pub const COMADMIN_E_NOTDELETEABLE: Self
pub const COMADMIN_E_SESSION: Self
pub const COMADMIN_E_COMP_MOVE_LOCKED: Self
pub const COMADMIN_E_COMP_MOVE_BAD_DEST: Self
pub const COMADMIN_E_REGISTERTLB: Self
pub const COMADMIN_E_SYSTEMAPP: Self
pub const COMADMIN_E_COMPFILE_NOREGISTRAR: Self
pub const COMADMIN_E_COREQCOMPINSTALLED: Self
pub const COMADMIN_E_SERVICENOTINSTALLED: Self
pub const COMADMIN_E_PROPERTYSAVEFAILED: Self
pub const COMADMIN_E_OBJECTEXISTS: Self
pub const COMADMIN_E_COMPONENTEXISTS: Self
pub const COMADMIN_E_REGFILE_CORRUPT: Self
pub const COMADMIN_E_PROPERTY_OVERFLOW: Self
pub const COMADMIN_E_NOTINREGISTRY: Self
pub const COMADMIN_E_OBJECTNOTPOOLABLE: Self
pub const COMADMIN_E_APPLID_MATCHES_CLSID: Self
pub const COMADMIN_E_ROLE_DOES_NOT_EXIST: Self
pub const COMADMIN_E_START_APP_NEEDS_COMPONENTS: Self
pub const COMADMIN_E_REQUIRES_DIFFERENT_PLATFORM: Self
pub const COMADMIN_E_CAN_NOT_EXPORT_APP_PROXY: Self
pub const COMADMIN_E_CAN_NOT_START_APP: Self
pub const COMADMIN_E_CAN_NOT_EXPORT_SYS_APP: Self
pub const COMADMIN_E_CANT_SUBSCRIBE_TO_COMPONENT: Self
pub const COMADMIN_E_EVENTCLASS_CANT_BE_SUBSCRIBER: Self
pub const COMADMIN_E_LIB_APP_PROXY_INCOMPATIBLE: Self
pub const COMADMIN_E_BASE_PARTITION_ONLY: Self
pub const COMADMIN_E_START_APP_DISABLED: Self
pub const COMADMIN_E_CAT_DUPLICATE_PARTITION_NAME: Self
pub const COMADMIN_E_CAT_INVALID_PARTITION_NAME: Self
pub const COMADMIN_E_CAT_PARTITION_IN_USE: Self
pub const COMADMIN_E_FILE_PARTITION_DUPLICATE_FILES: Self
pub const COMADMIN_E_CAT_IMPORTED_COMPONENTS_NOT_ALLOWED: Self
pub const COMADMIN_E_AMBIGUOUS_APPLICATION_NAME: Self
pub const COMADMIN_E_AMBIGUOUS_PARTITION_NAME: Self
pub const COMADMIN_E_REGDB_NOTINITIALIZED: Self
pub const COMADMIN_E_REGDB_NOTOPEN: Self
pub const COMADMIN_E_REGDB_SYSTEMERR: Self
pub const COMADMIN_E_REGDB_ALREADYRUNNING: Self
pub const COMADMIN_E_MIG_VERSIONNOTSUPPORTED: Self
pub const COMADMIN_E_MIG_SCHEMANOTFOUND: Self
pub const COMADMIN_E_CAT_BITNESSMISMATCH: Self
pub const COMADMIN_E_CAT_UNACCEPTABLEBITNESS: Self
pub const COMADMIN_E_CAT_WRONGAPPBITNESS: Self
pub const COMADMIN_E_CAT_PAUSE_RESUME_NOT_SUPPORTED: Self
pub const COMADMIN_E_CAT_SERVERFAULT: Self
pub const COMQC_E_APPLICATION_NOT_QUEUED: Self
pub const COMQC_E_NO_QUEUEABLE_INTERFACES: Self
pub const COMQC_E_QUEUING_SERVICE_NOT_AVAILABLE: Self
pub const COMQC_E_NO_IPERSISTSTREAM: Self
pub const COMQC_E_BAD_MESSAGE: Self
pub const COMQC_E_UNAUTHENTICATED: Self
pub const COMQC_E_UNTRUSTED_ENQUEUER: Self
pub const MSDTC_E_DUPLICATE_RESOURCE: Self
pub const COMADMIN_E_OBJECT_PARENT_MISSING: Self
pub const COMADMIN_E_OBJECT_DOES_NOT_EXIST: Self
pub const COMADMIN_E_APP_NOT_RUNNING: Self
pub const COMADMIN_E_INVALID_PARTITION: Self
pub const COMADMIN_E_SVCAPP_NOT_POOLABLE_OR_RECYCLABLE: Self
pub const COMADMIN_E_USER_IN_SET: Self
pub const COMADMIN_E_CANTRECYCLELIBRARYAPPS: Self
pub const COMADMIN_E_CANTRECYCLESERVICEAPPS: Self
pub const COMADMIN_E_PROCESSALREADYRECYCLED: Self
pub const COMADMIN_E_PAUSEDPROCESSMAYNOTBERECYCLED: Self
pub const COMADMIN_E_CANTMAKEINPROCSERVICE: Self
pub const COMADMIN_E_PROGIDINUSEBYCLSID: Self
pub const COMADMIN_E_DEFAULT_PARTITION_NOT_IN_SET: Self
pub const COMADMIN_E_RECYCLEDPROCESSMAYNOTBEPAUSED: Self
pub const COMADMIN_E_PARTITION_ACCESSDENIED: Self
pub const COMADMIN_E_PARTITION_MSI_ONLY: Self
pub const COMADMIN_E_LEGACYCOMPS_NOT_ALLOWED_IN_1_0_FORMAT: Self
pub const COMADMIN_E_LEGACYCOMPS_NOT_ALLOWED_IN_NONBASE_PARTITIONS: Self
pub const COMADMIN_E_COMP_MOVE_SOURCE: Self
pub const COMADMIN_E_COMP_MOVE_DEST: Self
pub const COMADMIN_E_COMP_MOVE_PRIVATE: Self
pub const COMADMIN_E_BASEPARTITION_REQUIRED_IN_SET: Self
pub const COMADMIN_E_CANNOT_ALIAS_EVENTCLASS: Self
pub const COMADMIN_E_PRIVATE_ACCESSDENIED: Self
pub const COMADMIN_E_SAFERINVALID: Self
pub const COMADMIN_E_REGISTRY_ACCESSDENIED: Self
pub const COMADMIN_E_PARTITIONS_DISABLED: Self
pub const WER_S_REPORT_DEBUG: Self
pub const WER_S_REPORT_UPLOADED: Self
pub const WER_S_REPORT_QUEUED: Self
pub const WER_S_DISABLED: Self
pub const WER_S_SUSPENDED_UPLOAD: Self
pub const WER_S_DISABLED_QUEUE: Self
pub const WER_S_DISABLED_ARCHIVE: Self
pub const WER_S_REPORT_ASYNC: Self
pub const WER_S_IGNORE_ASSERT_INSTANCE: Self
pub const WER_S_IGNORE_ALL_ASSERTS: Self
pub const WER_S_ASSERT_CONTINUE: Self
pub const WER_S_THROTTLED: Self
pub const WER_S_REPORT_UPLOADED_CAB: Self
pub const WER_E_CRASH_FAILURE: Self
pub const WER_E_CANCELED: Self
pub const WER_E_NETWORK_FAILURE: Self
pub const WER_E_NOT_INITIALIZED: Self
pub const WER_E_ALREADY_REPORTING: Self
pub const WER_E_DUMP_THROTTLED: Self
pub const WER_E_INSUFFICIENT_CONSENT: Self
pub const WER_E_TOO_HEAVY: Self
pub const ERROR_FLT_IO_COMPLETE: Self
pub const ERROR_FLT_NO_HANDLER_DEFINED: Self
pub const ERROR_FLT_CONTEXT_ALREADY_DEFINED: Self
pub const ERROR_FLT_INVALID_ASYNCHRONOUS_REQUEST: Self
pub const ERROR_FLT_DISALLOW_FAST_IO: Self
pub const ERROR_FLT_INVALID_NAME_REQUEST: Self
pub const ERROR_FLT_NOT_SAFE_TO_POST_OPERATION: Self
pub const ERROR_FLT_NOT_INITIALIZED: Self
pub const ERROR_FLT_FILTER_NOT_READY: Self
pub const ERROR_FLT_POST_OPERATION_CLEANUP: Self
pub const ERROR_FLT_INTERNAL_ERROR: Self
pub const ERROR_FLT_DELETING_OBJECT: Self
pub const ERROR_FLT_MUST_BE_NONPAGED_POOL: Self
pub const ERROR_FLT_DUPLICATE_ENTRY: Self
pub const ERROR_FLT_CBDQ_DISABLED: Self
pub const ERROR_FLT_DO_NOT_ATTACH: Self
pub const ERROR_FLT_DO_NOT_DETACH: Self
pub const ERROR_FLT_INSTANCE_ALTITUDE_COLLISION: Self
pub const ERROR_FLT_INSTANCE_NAME_COLLISION: Self
pub const ERROR_FLT_FILTER_NOT_FOUND: Self
pub const ERROR_FLT_VOLUME_NOT_FOUND: Self
pub const ERROR_FLT_INSTANCE_NOT_FOUND: Self
pub const ERROR_FLT_CONTEXT_ALLOCATION_NOT_FOUND: Self
pub const ERROR_FLT_INVALID_CONTEXT_REGISTRATION: Self
pub const ERROR_FLT_NAME_CACHE_MISS: Self
pub const ERROR_FLT_NO_DEVICE_OBJECT: Self
pub const ERROR_FLT_VOLUME_ALREADY_MOUNTED: Self
pub const ERROR_FLT_ALREADY_ENLISTED: Self
pub const ERROR_FLT_CONTEXT_ALREADY_LINKED: Self
pub const ERROR_FLT_NO_WAITER_FOR_REPLY: Self
pub const ERROR_FLT_REGISTRATION_BUSY: Self
pub const ERROR_HUNG_DISPLAY_DRIVER_THREAD: Self
pub const DWM_E_COMPOSITIONDISABLED: Self
pub const DWM_E_REMOTING_NOT_SUPPORTED: Self
pub const DWM_E_NO_REDIRECTION_SURFACE_AVAILABLE: Self
pub const DWM_E_NOT_QUEUING_PRESENTS: Self
pub const DWM_E_ADAPTER_NOT_FOUND: Self
pub const DWM_S_GDI_REDIRECTION_SURFACE: Self
pub const DWM_E_TEXTURE_TOO_LARGE: Self
pub const DWM_S_GDI_REDIRECTION_SURFACE_BLT_VIA_GDI: Self
pub const ERROR_MONITOR_NO_DESCRIPTOR: Self
pub const ERROR_MONITOR_UNKNOWN_DESCRIPTOR_FORMAT: Self
pub const ERROR_MONITOR_INVALID_DESCRIPTOR_CHECKSUM: Self
pub const ERROR_MONITOR_INVALID_STANDARD_TIMING_BLOCK: Self
pub const ERROR_MONITOR_WMI_DATABLOCK_REGISTRATION_FAILED: Self
pub const ERROR_MONITOR_INVALID_SERIAL_NUMBER_MONDSC_BLOCK: Self
pub const ERROR_MONITOR_INVALID_USER_FRIENDLY_MONDSC_BLOCK: Self
pub const ERROR_MONITOR_NO_MORE_DESCRIPTOR_DATA: Self
pub const ERROR_MONITOR_INVALID_DETAILED_TIMING_BLOCK: Self
pub const ERROR_MONITOR_INVALID_MANUFACTURE_DATE: Self
pub const ERROR_GRAPHICS_NOT_EXCLUSIVE_MODE_OWNER: Self
pub const ERROR_GRAPHICS_INSUFFICIENT_DMA_BUFFER: Self
pub const ERROR_GRAPHICS_INVALID_DISPLAY_ADAPTER: Self
pub const ERROR_GRAPHICS_ADAPTER_WAS_RESET: Self
pub const ERROR_GRAPHICS_INVALID_DRIVER_MODEL: Self
pub const ERROR_GRAPHICS_PRESENT_MODE_CHANGED: Self
pub const ERROR_GRAPHICS_PRESENT_OCCLUDED: Self
pub const ERROR_GRAPHICS_PRESENT_DENIED: Self
pub const ERROR_GRAPHICS_CANNOTCOLORCONVERT: Self
pub const ERROR_GRAPHICS_DRIVER_MISMATCH: Self
pub const ERROR_GRAPHICS_PARTIAL_DATA_POPULATED: Self
pub const ERROR_GRAPHICS_PRESENT_REDIRECTION_DISABLED: Self
pub const ERROR_GRAPHICS_PRESENT_UNOCCLUDED: Self
pub const ERROR_GRAPHICS_WINDOWDC_NOT_AVAILABLE: Self
pub const ERROR_GRAPHICS_WINDOWLESS_PRESENT_DISABLED: Self
pub const ERROR_GRAPHICS_PRESENT_INVALID_WINDOW: Self
pub const ERROR_GRAPHICS_PRESENT_BUFFER_NOT_BOUND: Self
pub const ERROR_GRAPHICS_VAIL_STATE_CHANGED: Self
pub const ERROR_GRAPHICS_INDIRECT_DISPLAY_ABANDON_SWAPCHAIN: Self
pub const ERROR_GRAPHICS_INDIRECT_DISPLAY_DEVICE_STOPPED: Self
pub const ERROR_GRAPHICS_NO_VIDEO_MEMORY: Self
pub const ERROR_GRAPHICS_CANT_LOCK_MEMORY: Self
pub const ERROR_GRAPHICS_ALLOCATION_BUSY: Self
pub const ERROR_GRAPHICS_TOO_MANY_REFERENCES: Self
pub const ERROR_GRAPHICS_TRY_AGAIN_LATER: Self
pub const ERROR_GRAPHICS_TRY_AGAIN_NOW: Self
pub const ERROR_GRAPHICS_ALLOCATION_INVALID: Self
pub const ERROR_GRAPHICS_UNSWIZZLING_APERTURE_UNAVAILABLE: Self
pub const ERROR_GRAPHICS_UNSWIZZLING_APERTURE_UNSUPPORTED: Self
pub const ERROR_GRAPHICS_CANT_EVICT_PINNED_ALLOCATION: Self
pub const ERROR_GRAPHICS_INVALID_ALLOCATION_USAGE: Self
pub const ERROR_GRAPHICS_CANT_RENDER_LOCKED_ALLOCATION: Self
pub const ERROR_GRAPHICS_ALLOCATION_CLOSED: Self
pub const ERROR_GRAPHICS_INVALID_ALLOCATION_INSTANCE: Self
pub const ERROR_GRAPHICS_INVALID_ALLOCATION_HANDLE: Self
pub const ERROR_GRAPHICS_WRONG_ALLOCATION_DEVICE: Self
pub const ERROR_GRAPHICS_ALLOCATION_CONTENT_LOST: Self
pub const ERROR_GRAPHICS_GPU_EXCEPTION_ON_DEVICE: Self
pub const ERROR_GRAPHICS_SKIP_ALLOCATION_PREPARATION: Self
pub const ERROR_GRAPHICS_INVALID_VIDPN_TOPOLOGY: Self
pub const ERROR_GRAPHICS_VIDPN_TOPOLOGY_NOT_SUPPORTED: Self
pub const ERROR_GRAPHICS_VIDPN_TOPOLOGY_CURRENTLY_NOT_SUPPORTED: Self
pub const ERROR_GRAPHICS_INVALID_VIDPN: Self
pub const ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE: Self
pub const ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET: Self
pub const ERROR_GRAPHICS_VIDPN_MODALITY_NOT_SUPPORTED: Self
pub const ERROR_GRAPHICS_MODE_NOT_PINNED: Self
pub const ERROR_GRAPHICS_INVALID_VIDPN_SOURCEMODESET: Self
pub const ERROR_GRAPHICS_INVALID_VIDPN_TARGETMODESET: Self
pub const ERROR_GRAPHICS_INVALID_FREQUENCY: Self
pub const ERROR_GRAPHICS_INVALID_ACTIVE_REGION: Self
pub const ERROR_GRAPHICS_INVALID_TOTAL_REGION: Self
pub const ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE_MODE: Self
pub const ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET_MODE: Self
pub const ERROR_GRAPHICS_PINNED_MODE_MUST_REMAIN_IN_SET: Self
pub const ERROR_GRAPHICS_PATH_ALREADY_IN_TOPOLOGY: Self
pub const ERROR_GRAPHICS_MODE_ALREADY_IN_MODESET: Self
pub const ERROR_GRAPHICS_INVALID_VIDEOPRESENTSOURCESET: Self
pub const ERROR_GRAPHICS_INVALID_VIDEOPRESENTTARGETSET: Self
pub const ERROR_GRAPHICS_SOURCE_ALREADY_IN_SET: Self
pub const ERROR_GRAPHICS_TARGET_ALREADY_IN_SET: Self
pub const ERROR_GRAPHICS_INVALID_VIDPN_PRESENT_PATH: Self
pub const ERROR_GRAPHICS_NO_RECOMMENDED_VIDPN_TOPOLOGY: Self
pub const ERROR_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGESET: Self
pub const ERROR_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE: Self
pub const ERROR_GRAPHICS_FREQUENCYRANGE_NOT_IN_SET: Self
pub const ERROR_GRAPHICS_NO_PREFERRED_MODE: Self
pub const ERROR_GRAPHICS_FREQUENCYRANGE_ALREADY_IN_SET: Self
pub const ERROR_GRAPHICS_STALE_MODESET: Self
pub const ERROR_GRAPHICS_INVALID_MONITOR_SOURCEMODESET: Self
pub const ERROR_GRAPHICS_INVALID_MONITOR_SOURCE_MODE: Self
pub const ERROR_GRAPHICS_NO_RECOMMENDED_FUNCTIONAL_VIDPN: Self
pub const ERROR_GRAPHICS_MODE_ID_MUST_BE_UNIQUE: Self
pub const ERROR_GRAPHICS_EMPTY_ADAPTER_MONITOR_MODE_SUPPORT_INTERSECTION: Self
pub const ERROR_GRAPHICS_VIDEO_PRESENT_TARGETS_LESS_THAN_SOURCES: Self
pub const ERROR_GRAPHICS_PATH_NOT_IN_TOPOLOGY: Self
pub const ERROR_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_SOURCE: Self
pub const ERROR_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_TARGET: Self
pub const ERROR_GRAPHICS_INVALID_MONITORDESCRIPTORSET: Self
pub const ERROR_GRAPHICS_INVALID_MONITORDESCRIPTOR: Self
pub const ERROR_GRAPHICS_MONITORDESCRIPTOR_NOT_IN_SET: Self
pub const ERROR_GRAPHICS_MONITORDESCRIPTOR_ALREADY_IN_SET: Self
pub const ERROR_GRAPHICS_MONITORDESCRIPTOR_ID_MUST_BE_UNIQUE: Self
pub const ERROR_GRAPHICS_INVALID_VIDPN_TARGET_SUBSET_TYPE: Self
pub const ERROR_GRAPHICS_RESOURCES_NOT_RELATED: Self
pub const ERROR_GRAPHICS_SOURCE_ID_MUST_BE_UNIQUE: Self
pub const ERROR_GRAPHICS_TARGET_ID_MUST_BE_UNIQUE: Self
pub const ERROR_GRAPHICS_NO_AVAILABLE_VIDPN_TARGET: Self
pub const ERROR_GRAPHICS_MONITOR_COULD_NOT_BE_ASSOCIATED_WITH_ADAPTER: Self
pub const ERROR_GRAPHICS_NO_VIDPNMGR: Self
pub const ERROR_GRAPHICS_NO_ACTIVE_VIDPN: Self
pub const ERROR_GRAPHICS_STALE_VIDPN_TOPOLOGY: Self
pub const ERROR_GRAPHICS_MONITOR_NOT_CONNECTED: Self
pub const ERROR_GRAPHICS_SOURCE_NOT_IN_TOPOLOGY: Self
pub const ERROR_GRAPHICS_INVALID_PRIMARYSURFACE_SIZE: Self
pub const ERROR_GRAPHICS_INVALID_VISIBLEREGION_SIZE: Self
pub const ERROR_GRAPHICS_INVALID_STRIDE: Self
pub const ERROR_GRAPHICS_INVALID_PIXELFORMAT: Self
pub const ERROR_GRAPHICS_INVALID_COLORBASIS: Self
pub const ERROR_GRAPHICS_INVALID_PIXELVALUEACCESSMODE: Self
pub const ERROR_GRAPHICS_TARGET_NOT_IN_TOPOLOGY: Self
pub const ERROR_GRAPHICS_NO_DISPLAY_MODE_MANAGEMENT_SUPPORT: Self
pub const ERROR_GRAPHICS_VIDPN_SOURCE_IN_USE: Self
pub const ERROR_GRAPHICS_CANT_ACCESS_ACTIVE_VIDPN: Self
pub const ERROR_GRAPHICS_INVALID_PATH_IMPORTANCE_ORDINAL: Self
pub const ERROR_GRAPHICS_INVALID_PATH_CONTENT_GEOMETRY_TRANSFORMATION: Self
pub const ERROR_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_SUPPORTED: Self
pub const ERROR_GRAPHICS_INVALID_GAMMA_RAMP: Self
pub const ERROR_GRAPHICS_GAMMA_RAMP_NOT_SUPPORTED: Self
pub const ERROR_GRAPHICS_MULTISAMPLING_NOT_SUPPORTED: Self
pub const ERROR_GRAPHICS_MODE_NOT_IN_MODESET: Self
pub const ERROR_GRAPHICS_DATASET_IS_EMPTY: Self
pub const ERROR_GRAPHICS_NO_MORE_ELEMENTS_IN_DATASET: Self
pub const ERROR_GRAPHICS_INVALID_VIDPN_TOPOLOGY_RECOMMENDATION_REASON: Self
pub const ERROR_GRAPHICS_INVALID_PATH_CONTENT_TYPE: Self
pub const ERROR_GRAPHICS_INVALID_COPYPROTECTION_TYPE: Self
pub const ERROR_GRAPHICS_UNASSIGNED_MODESET_ALREADY_EXISTS: Self
pub const ERROR_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_PINNED: Self
pub const ERROR_GRAPHICS_INVALID_SCANLINE_ORDERING: Self
pub const ERROR_GRAPHICS_TOPOLOGY_CHANGES_NOT_ALLOWED: Self
pub const ERROR_GRAPHICS_NO_AVAILABLE_IMPORTANCE_ORDINALS: Self
pub const ERROR_GRAPHICS_INCOMPATIBLE_PRIVATE_FORMAT: Self
pub const ERROR_GRAPHICS_INVALID_MODE_PRUNING_ALGORITHM: Self
pub const ERROR_GRAPHICS_INVALID_MONITOR_CAPABILITY_ORIGIN: Self
pub const ERROR_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE_CONSTRAINT: Self
pub const ERROR_GRAPHICS_MAX_NUM_PATHS_REACHED: Self
pub const ERROR_GRAPHICS_CANCEL_VIDPN_TOPOLOGY_AUGMENTATION: Self
pub const ERROR_GRAPHICS_INVALID_CLIENT_TYPE: Self
pub const ERROR_GRAPHICS_CLIENTVIDPN_NOT_SET: Self
pub const ERROR_GRAPHICS_SPECIFIED_CHILD_ALREADY_CONNECTED: Self
pub const ERROR_GRAPHICS_CHILD_DESCRIPTOR_NOT_SUPPORTED: Self
pub const ERROR_GRAPHICS_UNKNOWN_CHILD_STATUS: Self
pub const ERROR_GRAPHICS_NOT_A_LINKED_ADAPTER: Self
pub const ERROR_GRAPHICS_LEADLINK_NOT_ENUMERATED: Self
pub const ERROR_GRAPHICS_CHAINLINKS_NOT_ENUMERATED: Self
pub const ERROR_GRAPHICS_ADAPTER_CHAIN_NOT_READY: Self
pub const ERROR_GRAPHICS_CHAINLINKS_NOT_STARTED: Self
pub const ERROR_GRAPHICS_CHAINLINKS_NOT_POWERED_ON: Self
pub const ERROR_GRAPHICS_INCONSISTENT_DEVICE_LINK_STATE: Self
pub const ERROR_GRAPHICS_LEADLINK_START_DEFERRED: Self
pub const ERROR_GRAPHICS_NOT_POST_DEVICE_DRIVER: Self
pub const ERROR_GRAPHICS_POLLING_TOO_FREQUENTLY: Self
pub const ERROR_GRAPHICS_START_DEFERRED: Self
pub const ERROR_GRAPHICS_ADAPTER_ACCESS_NOT_EXCLUDED: Self
pub const ERROR_GRAPHICS_DEPENDABLE_CHILD_STATUS: Self
pub const ERROR_GRAPHICS_OPM_NOT_SUPPORTED: Self
pub const ERROR_GRAPHICS_COPP_NOT_SUPPORTED: Self
pub const ERROR_GRAPHICS_UAB_NOT_SUPPORTED: Self
pub const ERROR_GRAPHICS_OPM_INVALID_ENCRYPTED_PARAMETERS: Self
pub const ERROR_GRAPHICS_OPM_NO_VIDEO_OUTPUTS_EXIST: Self
pub const ERROR_GRAPHICS_OPM_INTERNAL_ERROR: Self
pub const ERROR_GRAPHICS_OPM_INVALID_HANDLE: Self
pub const ERROR_GRAPHICS_PVP_INVALID_CERTIFICATE_LENGTH: Self
pub const ERROR_GRAPHICS_OPM_SPANNING_MODE_ENABLED: Self
pub const ERROR_GRAPHICS_OPM_THEATER_MODE_ENABLED: Self
pub const ERROR_GRAPHICS_PVP_HFS_FAILED: Self
pub const ERROR_GRAPHICS_OPM_INVALID_SRM: Self
pub const ERROR_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_HDCP: Self
pub const ERROR_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_ACP: Self
pub const ERROR_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_CGMSA: Self
pub const ERROR_GRAPHICS_OPM_HDCP_SRM_NEVER_SET: Self
pub const ERROR_GRAPHICS_OPM_RESOLUTION_TOO_HIGH: Self
pub const ERROR_GRAPHICS_OPM_ALL_HDCP_HARDWARE_ALREADY_IN_USE: Self
pub const ERROR_GRAPHICS_OPM_VIDEO_OUTPUT_NO_LONGER_EXISTS: Self
pub const ERROR_GRAPHICS_OPM_SESSION_TYPE_CHANGE_IN_PROGRESS: Self
pub const ERROR_GRAPHICS_OPM_VIDEO_OUTPUT_DOES_NOT_HAVE_COPP_SEMANTICS: Self
pub const ERROR_GRAPHICS_OPM_INVALID_INFORMATION_REQUEST: Self
pub const ERROR_GRAPHICS_OPM_DRIVER_INTERNAL_ERROR: Self
pub const ERROR_GRAPHICS_OPM_VIDEO_OUTPUT_DOES_NOT_HAVE_OPM_SEMANTICS: Self
pub const ERROR_GRAPHICS_OPM_SIGNALING_NOT_SUPPORTED: Self
pub const ERROR_GRAPHICS_OPM_INVALID_CONFIGURATION_REQUEST: Self
pub const ERROR_GRAPHICS_I2C_NOT_SUPPORTED: Self
pub const ERROR_GRAPHICS_I2C_DEVICE_DOES_NOT_EXIST: Self
pub const ERROR_GRAPHICS_I2C_ERROR_TRANSMITTING_DATA: Self
pub const ERROR_GRAPHICS_I2C_ERROR_RECEIVING_DATA: Self
pub const ERROR_GRAPHICS_DDCCI_VCP_NOT_SUPPORTED: Self
pub const ERROR_GRAPHICS_DDCCI_INVALID_DATA: Self
pub const ERROR_GRAPHICS_DDCCI_MONITOR_RETURNED_INVALID_TIMING_STATUS_BYTE: Self
pub const ERROR_GRAPHICS_MCA_INVALID_CAPABILITIES_STRING: Self
pub const ERROR_GRAPHICS_MCA_INTERNAL_ERROR: Self
pub const ERROR_GRAPHICS_DDCCI_INVALID_MESSAGE_COMMAND: Self
pub const ERROR_GRAPHICS_DDCCI_INVALID_MESSAGE_LENGTH: Self
pub const ERROR_GRAPHICS_DDCCI_INVALID_MESSAGE_CHECKSUM: Self
pub const ERROR_GRAPHICS_INVALID_PHYSICAL_MONITOR_HANDLE: Self
pub const ERROR_GRAPHICS_MONITOR_NO_LONGER_EXISTS: Self
pub const ERROR_GRAPHICS_DDCCI_CURRENT_CURRENT_VALUE_GREATER_THAN_MAXIMUM_VALUE: Self
pub const ERROR_GRAPHICS_MCA_INVALID_VCP_VERSION: Self
pub const ERROR_GRAPHICS_MCA_MONITOR_VIOLATES_MCCS_SPECIFICATION: Self
pub const ERROR_GRAPHICS_MCA_MCCS_VERSION_MISMATCH: Self
pub const ERROR_GRAPHICS_MCA_UNSUPPORTED_MCCS_VERSION: Self
pub const ERROR_GRAPHICS_MCA_INVALID_TECHNOLOGY_TYPE_RETURNED: Self
pub const ERROR_GRAPHICS_MCA_UNSUPPORTED_COLOR_TEMPERATURE: Self
pub const ERROR_GRAPHICS_ONLY_CONSOLE_SESSION_SUPPORTED: Self
pub const ERROR_GRAPHICS_NO_DISPLAY_DEVICE_CORRESPONDS_TO_NAME: Self
pub const ERROR_GRAPHICS_DISPLAY_DEVICE_NOT_ATTACHED_TO_DESKTOP: Self
pub const ERROR_GRAPHICS_MIRRORING_DEVICES_NOT_SUPPORTED: Self
pub const ERROR_GRAPHICS_INVALID_POINTER: Self
pub const ERROR_GRAPHICS_NO_MONITORS_CORRESPOND_TO_DISPLAY_DEVICE: Self
pub const ERROR_GRAPHICS_PARAMETER_ARRAY_TOO_SMALL: Self
pub const ERROR_GRAPHICS_INTERNAL_ERROR: Self
pub const ERROR_GRAPHICS_SESSION_TYPE_CHANGE_IN_PROGRESS: Self
pub const NAP_E_INVALID_PACKET: Self
pub const NAP_E_MISSING_SOH: Self
pub const NAP_E_CONFLICTING_ID: Self
pub const NAP_E_NO_CACHED_SOH: Self
pub const NAP_E_STILL_BOUND: Self
pub const NAP_E_NOT_REGISTERED: Self
pub const NAP_E_NOT_INITIALIZED: Self
pub const NAP_E_MISMATCHED_ID: Self
pub const NAP_E_NOT_PENDING: Self
pub const NAP_E_ID_NOT_FOUND: Self
pub const NAP_E_MAXSIZE_TOO_SMALL: Self
pub const NAP_E_SERVICE_NOT_RUNNING: Self
pub const NAP_S_CERT_ALREADY_PRESENT: Self
pub const NAP_E_ENTITY_DISABLED: Self
pub const NAP_E_NETSH_GROUPPOLICY_ERROR: Self
pub const NAP_E_TOO_MANY_CALLS: Self
pub const NAP_E_SHV_CONFIG_EXISTED: Self
pub const NAP_E_SHV_CONFIG_NOT_FOUND: Self
pub const NAP_E_SHV_TIMEOUT: Self
pub const TPM_E_ERROR_MASK: Self
pub const TPM_E_AUTHFAIL: Self
pub const TPM_E_BADINDEX: Self
pub const TPM_E_BAD_PARAMETER: Self
pub const TPM_E_AUDITFAILURE: Self
pub const TPM_E_CLEAR_DISABLED: Self
pub const TPM_E_DEACTIVATED: Self
pub const TPM_E_DISABLED: Self
pub const TPM_E_DISABLED_CMD: Self
pub const TPM_E_FAIL: Self
pub const TPM_E_BAD_ORDINAL: Self
pub const TPM_E_INSTALL_DISABLED: Self
pub const TPM_E_INVALID_KEYHANDLE: Self
pub const TPM_E_KEYNOTFOUND: Self
pub const TPM_E_INAPPROPRIATE_ENC: Self
pub const TPM_E_MIGRATEFAIL: Self
pub const TPM_E_INVALID_PCR_INFO: Self
pub const TPM_E_NOSPACE: Self
pub const TPM_E_NOSRK: Self
pub const TPM_E_NOTSEALED_BLOB: Self
pub const TPM_E_OWNER_SET: Self
pub const TPM_E_RESOURCES: Self
pub const TPM_E_SHORTRANDOM: Self
pub const TPM_E_SIZE: Self
pub const TPM_E_WRONGPCRVAL: Self
pub const TPM_E_BAD_PARAM_SIZE: Self
pub const TPM_E_SHA_THREAD: Self
pub const TPM_E_SHA_ERROR: Self
pub const TPM_E_FAILEDSELFTEST: Self
pub const TPM_E_AUTH2FAIL: Self
pub const TPM_E_BADTAG: Self
pub const TPM_E_IOERROR: Self
pub const TPM_E_ENCRYPT_ERROR: Self
pub const TPM_E_DECRYPT_ERROR: Self
pub const TPM_E_INVALID_AUTHHANDLE: Self
pub const TPM_E_NO_ENDORSEMENT: Self
pub const TPM_E_INVALID_KEYUSAGE: Self
pub const TPM_E_WRONG_ENTITYTYPE: Self
pub const TPM_E_INVALID_POSTINIT: Self
pub const TPM_E_INAPPROPRIATE_SIG: Self
pub const TPM_E_BAD_KEY_PROPERTY: Self
pub const TPM_E_BAD_MIGRATION: Self
pub const TPM_E_BAD_SCHEME: Self
pub const TPM_E_BAD_DATASIZE: Self
pub const TPM_E_BAD_MODE: Self
pub const TPM_E_BAD_PRESENCE: Self
pub const TPM_E_BAD_VERSION: Self
pub const TPM_E_NO_WRAP_TRANSPORT: Self
pub const TPM_E_AUDITFAIL_UNSUCCESSFUL: Self
pub const TPM_E_AUDITFAIL_SUCCESSFUL: Self
pub const TPM_E_NOTRESETABLE: Self
pub const TPM_E_NOTLOCAL: Self
pub const TPM_E_BAD_TYPE: Self
pub const TPM_E_INVALID_RESOURCE: Self
pub const TPM_E_NOTFIPS: Self
pub const TPM_E_INVALID_FAMILY: Self
pub const TPM_E_NO_NV_PERMISSION: Self
pub const TPM_E_REQUIRES_SIGN: Self
pub const TPM_E_KEY_NOTSUPPORTED: Self
pub const TPM_E_AUTH_CONFLICT: Self
pub const TPM_E_AREA_LOCKED: Self
pub const TPM_E_BAD_LOCALITY: Self
pub const TPM_E_READ_ONLY: Self
pub const TPM_E_PER_NOWRITE: Self
pub const TPM_E_FAMILYCOUNT: Self
pub const TPM_E_WRITE_LOCKED: Self
pub const TPM_E_BAD_ATTRIBUTES: Self
pub const TPM_E_INVALID_STRUCTURE: Self
pub const TPM_E_KEY_OWNER_CONTROL: Self
pub const TPM_E_BAD_COUNTER: Self
pub const TPM_E_NOT_FULLWRITE: Self
pub const TPM_E_CONTEXT_GAP: Self
pub const TPM_E_MAXNVWRITES: Self
pub const TPM_E_NOOPERATOR: Self
pub const TPM_E_RESOURCEMISSING: Self
pub const TPM_E_DELEGATE_LOCK: Self
pub const TPM_E_DELEGATE_FAMILY: Self
pub const TPM_E_DELEGATE_ADMIN: Self
pub const TPM_E_TRANSPORT_NOTEXCLUSIVE: Self
pub const TPM_E_OWNER_CONTROL: Self
pub const TPM_E_DAA_RESOURCES: Self
pub const TPM_E_DAA_INPUT_DATA0: Self
pub const TPM_E_DAA_INPUT_DATA1: Self
pub const TPM_E_DAA_ISSUER_SETTINGS: Self
pub const TPM_E_DAA_TPM_SETTINGS: Self
pub const TPM_E_DAA_STAGE: Self
pub const TPM_E_DAA_ISSUER_VALIDITY: Self
pub const TPM_E_DAA_WRONG_W: Self
pub const TPM_E_BAD_HANDLE: Self
pub const TPM_E_BAD_DELEGATE: Self
pub const TPM_E_BADCONTEXT: Self
pub const TPM_E_TOOMANYCONTEXTS: Self
pub const TPM_E_MA_TICKET_SIGNATURE: Self
pub const TPM_E_MA_DESTINATION: Self
pub const TPM_E_MA_SOURCE: Self
pub const TPM_E_MA_AUTHORITY: Self
pub const TPM_E_PERMANENTEK: Self
pub const TPM_E_BAD_SIGNATURE: Self
pub const TPM_E_NOCONTEXTSPACE: Self
pub const TPM_20_E_ASYMMETRIC: Self
pub const TPM_20_E_ATTRIBUTES: Self
pub const TPM_20_E_HASH: Self
pub const TPM_20_E_VALUE: Self
pub const TPM_20_E_HIERARCHY: Self
pub const TPM_20_E_KEY_SIZE: Self
pub const TPM_20_E_MGF: Self
pub const TPM_20_E_MODE: Self
pub const TPM_20_E_TYPE: Self
pub const TPM_20_E_HANDLE: Self
pub const TPM_20_E_KDF: Self
pub const TPM_20_E_RANGE: Self
pub const TPM_20_E_AUTH_FAIL: Self
pub const TPM_20_E_NONCE: Self
pub const TPM_20_E_PP: Self
pub const TPM_20_E_SCHEME: Self
pub const TPM_20_E_SIZE: Self
pub const TPM_20_E_SYMMETRIC: Self
pub const TPM_20_E_TAG: Self
pub const TPM_20_E_SELECTOR: Self
pub const TPM_20_E_INSUFFICIENT: Self
pub const TPM_20_E_SIGNATURE: Self
pub const TPM_20_E_KEY: Self
pub const TPM_20_E_POLICY_FAIL: Self
pub const TPM_20_E_INTEGRITY: Self
pub const TPM_20_E_TICKET: Self
pub const TPM_20_E_RESERVED_BITS: Self
pub const TPM_20_E_BAD_AUTH: Self
pub const TPM_20_E_EXPIRED: Self
pub const TPM_20_E_POLICY_CC: Self
pub const TPM_20_E_BINDING: Self
pub const TPM_20_E_CURVE: Self
pub const TPM_20_E_ECC_POINT: Self
pub const TPM_20_E_INITIALIZE: Self
pub const TPM_20_E_FAILURE: Self
pub const TPM_20_E_SEQUENCE: Self
pub const TPM_20_E_PRIVATE: Self
pub const TPM_20_E_HMAC: Self
pub const TPM_20_E_DISABLED: Self
pub const TPM_20_E_EXCLUSIVE: Self
pub const TPM_20_E_ECC_CURVE: Self
pub const TPM_20_E_AUTH_TYPE: Self
pub const TPM_20_E_AUTH_MISSING: Self
pub const TPM_20_E_POLICY: Self
pub const TPM_20_E_PCR: Self
pub const TPM_20_E_PCR_CHANGED: Self
pub const TPM_20_E_UPGRADE: Self
pub const TPM_20_E_TOO_MANY_CONTEXTS: Self
pub const TPM_20_E_AUTH_UNAVAILABLE: Self
pub const TPM_20_E_REBOOT: Self
pub const TPM_20_E_UNBALANCED: Self
pub const TPM_20_E_COMMAND_SIZE: Self
pub const TPM_20_E_COMMAND_CODE: Self
pub const TPM_20_E_AUTHSIZE: Self
pub const TPM_20_E_AUTH_CONTEXT: Self
pub const TPM_20_E_NV_RANGE: Self
pub const TPM_20_E_NV_SIZE: Self
pub const TPM_20_E_NV_LOCKED: Self
pub const TPM_20_E_NV_AUTHORIZATION: Self
pub const TPM_20_E_NV_UNINITIALIZED: Self
pub const TPM_20_E_NV_SPACE: Self
pub const TPM_20_E_NV_DEFINED: Self
pub const TPM_20_E_BAD_CONTEXT: Self
pub const TPM_20_E_CPHASH: Self
pub const TPM_20_E_PARENT: Self
pub const TPM_20_E_NEEDS_TEST: Self
pub const TPM_20_E_NO_RESULT: Self
pub const TPM_20_E_SENSITIVE: Self
pub const TPM_E_COMMAND_BLOCKED: Self
pub const TPM_E_INVALID_HANDLE: Self
pub const TPM_E_DUPLICATE_VHANDLE: Self
pub const TPM_E_EMBEDDED_COMMAND_BLOCKED: Self
pub const TPM_E_EMBEDDED_COMMAND_UNSUPPORTED: Self
pub const TPM_E_RETRY: Self
pub const TPM_E_NEEDS_SELFTEST: Self
pub const TPM_E_DOING_SELFTEST: Self
pub const TPM_E_DEFEND_LOCK_RUNNING: Self
pub const TPM_20_E_CONTEXT_GAP: Self
pub const TPM_20_E_OBJECT_MEMORY: Self
pub const TPM_20_E_SESSION_MEMORY: Self
pub const TPM_20_E_MEMORY: Self
pub const TPM_20_E_SESSION_HANDLES: Self
pub const TPM_20_E_OBJECT_HANDLES: Self
pub const TPM_20_E_LOCALITY: Self
pub const TPM_20_E_YIELDED: Self
pub const TPM_20_E_CANCELED: Self
pub const TPM_20_E_TESTING: Self
pub const TPM_20_E_NV_RATE: Self
pub const TPM_20_E_LOCKOUT: Self
pub const TPM_20_E_RETRY: Self
pub const TPM_20_E_NV_UNAVAILABLE: Self
pub const TBS_E_INTERNAL_ERROR: Self
pub const TBS_E_BAD_PARAMETER: Self
pub const TBS_E_INVALID_OUTPUT_POINTER: Self
pub const TBS_E_INVALID_CONTEXT: Self
pub const TBS_E_INSUFFICIENT_BUFFER: Self
pub const TBS_E_IOERROR: Self
pub const TBS_E_INVALID_CONTEXT_PARAM: Self
pub const TBS_E_SERVICE_NOT_RUNNING: Self
pub const TBS_E_TOO_MANY_TBS_CONTEXTS: Self
pub const TBS_E_TOO_MANY_RESOURCES: Self
pub const TBS_E_SERVICE_START_PENDING: Self
pub const TBS_E_PPI_NOT_SUPPORTED: Self
pub const TBS_E_COMMAND_CANCELED: Self
pub const TBS_E_BUFFER_TOO_LARGE: Self
pub const TBS_E_TPM_NOT_FOUND: Self
pub const TBS_E_SERVICE_DISABLED: Self
pub const TBS_E_NO_EVENT_LOG: Self
pub const TBS_E_ACCESS_DENIED: Self
pub const TBS_E_PROVISIONING_NOT_ALLOWED: Self
pub const TBS_E_PPI_FUNCTION_UNSUPPORTED: Self
pub const TBS_E_OWNERAUTH_NOT_FOUND: Self
pub const TBS_E_PROVISIONING_INCOMPLETE: Self
pub const TPMAPI_E_INVALID_STATE: Self
pub const TPMAPI_E_NOT_ENOUGH_DATA: Self
pub const TPMAPI_E_TOO_MUCH_DATA: Self
pub const TPMAPI_E_INVALID_OUTPUT_POINTER: Self
pub const TPMAPI_E_INVALID_PARAMETER: Self
pub const TPMAPI_E_OUT_OF_MEMORY: Self
pub const TPMAPI_E_BUFFER_TOO_SMALL: Self
pub const TPMAPI_E_INTERNAL_ERROR: Self
pub const TPMAPI_E_ACCESS_DENIED: Self
pub const TPMAPI_E_AUTHORIZATION_FAILED: Self
pub const TPMAPI_E_INVALID_CONTEXT_HANDLE: Self
pub const TPMAPI_E_TBS_COMMUNICATION_ERROR: Self
pub const TPMAPI_E_TPM_COMMAND_ERROR: Self
pub const TPMAPI_E_MESSAGE_TOO_LARGE: Self
pub const TPMAPI_E_INVALID_ENCODING: Self
pub const TPMAPI_E_INVALID_KEY_SIZE: Self
pub const TPMAPI_E_ENCRYPTION_FAILED: Self
pub const TPMAPI_E_INVALID_KEY_PARAMS: Self
pub const TPMAPI_E_INVALID_MIGRATION_AUTHORIZATION_BLOB: Self
pub const TPMAPI_E_INVALID_PCR_INDEX: Self
pub const TPMAPI_E_INVALID_DELEGATE_BLOB: Self
pub const TPMAPI_E_INVALID_CONTEXT_PARAMS: Self
pub const TPMAPI_E_INVALID_KEY_BLOB: Self
pub const TPMAPI_E_INVALID_PCR_DATA: Self
pub const TPMAPI_E_INVALID_OWNER_AUTH: Self
pub const TPMAPI_E_FIPS_RNG_CHECK_FAILED: Self
pub const TPMAPI_E_EMPTY_TCG_LOG: Self
pub const TPMAPI_E_INVALID_TCG_LOG_ENTRY: Self
pub const TPMAPI_E_TCG_SEPARATOR_ABSENT: Self
pub const TPMAPI_E_TCG_INVALID_DIGEST_ENTRY: Self
pub const TPMAPI_E_POLICY_DENIES_OPERATION: Self
pub const TPMAPI_E_NV_BITS_NOT_DEFINED: Self
pub const TPMAPI_E_NV_BITS_NOT_READY: Self
pub const TPMAPI_E_SEALING_KEY_NOT_AVAILABLE: Self
pub const TPMAPI_E_NO_AUTHORIZATION_CHAIN_FOUND: Self
pub const TPMAPI_E_SVN_COUNTER_NOT_AVAILABLE: Self
pub const TPMAPI_E_OWNER_AUTH_NOT_NULL: Self
pub const TPMAPI_E_ENDORSEMENT_AUTH_NOT_NULL: Self
pub const TPMAPI_E_AUTHORIZATION_REVOKED: Self
pub const TPMAPI_E_MALFORMED_AUTHORIZATION_KEY: Self
pub const TPMAPI_E_AUTHORIZING_KEY_NOT_SUPPORTED: Self
pub const TPMAPI_E_INVALID_AUTHORIZATION_SIGNATURE: Self
pub const TPMAPI_E_MALFORMED_AUTHORIZATION_POLICY: Self
pub const TPMAPI_E_MALFORMED_AUTHORIZATION_OTHER: Self
pub const TPMAPI_E_SEALING_KEY_CHANGED: Self
pub const TBSIMP_E_BUFFER_TOO_SMALL: Self
pub const TBSIMP_E_CLEANUP_FAILED: Self
pub const TBSIMP_E_INVALID_CONTEXT_HANDLE: Self
pub const TBSIMP_E_INVALID_CONTEXT_PARAM: Self
pub const TBSIMP_E_TPM_ERROR: Self
pub const TBSIMP_E_HASH_BAD_KEY: Self
pub const TBSIMP_E_DUPLICATE_VHANDLE: Self
pub const TBSIMP_E_INVALID_OUTPUT_POINTER: Self
pub const TBSIMP_E_INVALID_PARAMETER: Self
pub const TBSIMP_E_RPC_INIT_FAILED: Self
pub const TBSIMP_E_SCHEDULER_NOT_RUNNING: Self
pub const TBSIMP_E_COMMAND_CANCELED: Self
pub const TBSIMP_E_OUT_OF_MEMORY: Self
pub const TBSIMP_E_LIST_NO_MORE_ITEMS: Self
pub const TBSIMP_E_LIST_NOT_FOUND: Self
pub const TBSIMP_E_NOT_ENOUGH_SPACE: Self
pub const TBSIMP_E_NOT_ENOUGH_TPM_CONTEXTS: Self
pub const TBSIMP_E_COMMAND_FAILED: Self
pub const TBSIMP_E_UNKNOWN_ORDINAL: Self
pub const TBSIMP_E_RESOURCE_EXPIRED: Self
pub const TBSIMP_E_INVALID_RESOURCE: Self
pub const TBSIMP_E_NOTHING_TO_UNLOAD: Self
pub const TBSIMP_E_HASH_TABLE_FULL: Self
pub const TBSIMP_E_TOO_MANY_TBS_CONTEXTS: Self
pub const TBSIMP_E_TOO_MANY_RESOURCES: Self
pub const TBSIMP_E_PPI_NOT_SUPPORTED: Self
pub const TBSIMP_E_TPM_INCOMPATIBLE: Self
pub const TBSIMP_E_NO_EVENT_LOG: Self
pub const TPM_E_PPI_ACPI_FAILURE: Self
pub const TPM_E_PPI_USER_ABORT: Self
pub const TPM_E_PPI_BIOS_FAILURE: Self
pub const TPM_E_PPI_NOT_SUPPORTED: Self
pub const TPM_E_PPI_BLOCKED_IN_BIOS: Self
pub const TPM_E_PCP_ERROR_MASK: Self
pub const TPM_E_PCP_DEVICE_NOT_READY: Self
pub const TPM_E_PCP_INVALID_HANDLE: Self
pub const TPM_E_PCP_INVALID_PARAMETER: Self
pub const TPM_E_PCP_FLAG_NOT_SUPPORTED: Self
pub const TPM_E_PCP_NOT_SUPPORTED: Self
pub const TPM_E_PCP_BUFFER_TOO_SMALL: Self
pub const TPM_E_PCP_INTERNAL_ERROR: Self
pub const TPM_E_PCP_AUTHENTICATION_FAILED: Self
pub const TPM_E_PCP_AUTHENTICATION_IGNORED: Self
pub const TPM_E_PCP_POLICY_NOT_FOUND: Self
pub const TPM_E_PCP_PROFILE_NOT_FOUND: Self
pub const TPM_E_PCP_VALIDATION_FAILED: Self
pub const TPM_E_PCP_WRONG_PARENT: Self
pub const TPM_E_KEY_NOT_LOADED: Self
pub const TPM_E_NO_KEY_CERTIFICATION: Self
pub const TPM_E_KEY_NOT_FINALIZED: Self
pub const TPM_E_ATTESTATION_CHALLENGE_NOT_SET: Self
pub const TPM_E_NOT_PCR_BOUND: Self
pub const TPM_E_KEY_ALREADY_FINALIZED: Self
pub const TPM_E_KEY_USAGE_POLICY_NOT_SUPPORTED: Self
pub const TPM_E_KEY_USAGE_POLICY_INVALID: Self
pub const TPM_E_SOFT_KEY_ERROR: Self
pub const TPM_E_KEY_NOT_AUTHENTICATED: Self
pub const TPM_E_PCP_KEY_NOT_AIK: Self
pub const TPM_E_KEY_NOT_SIGNING_KEY: Self
pub const TPM_E_LOCKED_OUT: Self
pub const TPM_E_CLAIM_TYPE_NOT_SUPPORTED: Self
pub const TPM_E_VERSION_NOT_SUPPORTED: Self
pub const TPM_E_BUFFER_LENGTH_MISMATCH: Self
pub const TPM_E_PCP_IFX_RSA_KEY_CREATION_BLOCKED: Self
pub const TPM_E_PCP_TICKET_MISSING: Self
pub const TPM_E_PCP_RAW_POLICY_NOT_SUPPORTED: Self
pub const TPM_E_PCP_KEY_HANDLE_INVALIDATED: Self
pub const TPM_E_PCP_UNSUPPORTED_PSS_SALT: Self
pub const TPM_E_ZERO_EXHAUST_ENABLED: Self
pub const PLA_E_DCS_NOT_FOUND: Self
pub const PLA_E_DCS_IN_USE: Self
pub const PLA_E_TOO_MANY_FOLDERS: Self
pub const PLA_E_NO_MIN_DISK: Self
pub const PLA_E_DCS_ALREADY_EXISTS: Self
pub const PLA_S_PROPERTY_IGNORED: Self
pub const PLA_E_PROPERTY_CONFLICT: Self
pub const PLA_E_DCS_SINGLETON_REQUIRED: Self
pub const PLA_E_CREDENTIALS_REQUIRED: Self
pub const PLA_E_DCS_NOT_RUNNING: Self
pub const PLA_E_CONFLICT_INCL_EXCL_API: Self
pub const PLA_E_NETWORK_EXE_NOT_VALID: Self
pub const PLA_E_EXE_ALREADY_CONFIGURED: Self
pub const PLA_E_EXE_PATH_NOT_VALID: Self
pub const PLA_E_DC_ALREADY_EXISTS: Self
pub const PLA_E_DCS_START_WAIT_TIMEOUT: Self
pub const PLA_E_DC_START_WAIT_TIMEOUT: Self
pub const PLA_E_REPORT_WAIT_TIMEOUT: Self
pub const PLA_E_NO_DUPLICATES: Self
pub const PLA_E_EXE_FULL_PATH_REQUIRED: Self
pub const PLA_E_INVALID_SESSION_NAME: Self
pub const PLA_E_PLA_CHANNEL_NOT_ENABLED: Self
pub const PLA_E_TASKSCHED_CHANNEL_NOT_ENABLED: Self
pub const PLA_E_RULES_MANAGER_FAILED: Self
pub const PLA_E_CABAPI_FAILURE: Self
pub const FVE_E_LOCKED_VOLUME: Self
pub const FVE_E_NOT_ENCRYPTED: Self
pub const FVE_E_NO_TPM_BIOS: Self
pub const FVE_E_NO_MBR_METRIC: Self
pub const FVE_E_NO_BOOTSECTOR_METRIC: Self
pub const FVE_E_NO_BOOTMGR_METRIC: Self
pub const FVE_E_WRONG_BOOTMGR: Self
pub const FVE_E_SECURE_KEY_REQUIRED: Self
pub const FVE_E_NOT_ACTIVATED: Self
pub const FVE_E_ACTION_NOT_ALLOWED: Self
pub const FVE_E_AD_SCHEMA_NOT_INSTALLED: Self
pub const FVE_E_AD_INVALID_DATATYPE: Self
pub const FVE_E_AD_INVALID_DATASIZE: Self
pub const FVE_E_AD_NO_VALUES: Self
pub const FVE_E_AD_ATTR_NOT_SET: Self
pub const FVE_E_AD_GUID_NOT_FOUND: Self
pub const FVE_E_BAD_INFORMATION: Self
pub const FVE_E_TOO_SMALL: Self
pub const FVE_E_SYSTEM_VOLUME: Self
pub const FVE_E_FAILED_WRONG_FS: Self
pub const FVE_E_BAD_PARTITION_SIZE: Self
pub const FVE_E_NOT_SUPPORTED: Self
pub const FVE_E_BAD_DATA: Self
pub const FVE_E_VOLUME_NOT_BOUND: Self
pub const FVE_E_TPM_NOT_OWNED: Self
pub const FVE_E_NOT_DATA_VOLUME: Self
pub const FVE_E_AD_INSUFFICIENT_BUFFER: Self
pub const FVE_E_CONV_READ: Self
pub const FVE_E_CONV_WRITE: Self
pub const FVE_E_KEY_REQUIRED: Self
pub const FVE_E_CLUSTERING_NOT_SUPPORTED: Self
pub const FVE_E_VOLUME_BOUND_ALREADY: Self
pub const FVE_E_OS_NOT_PROTECTED: Self
pub const FVE_E_PROTECTION_DISABLED: Self
pub const FVE_E_RECOVERY_KEY_REQUIRED: Self
pub const FVE_E_FOREIGN_VOLUME: Self
pub const FVE_E_OVERLAPPED_UPDATE: Self
pub const FVE_E_TPM_SRK_AUTH_NOT_ZERO: Self
pub const FVE_E_FAILED_SECTOR_SIZE: Self
pub const FVE_E_FAILED_AUTHENTICATION: Self
pub const FVE_E_NOT_OS_VOLUME: Self
pub const FVE_E_AUTOUNLOCK_ENABLED: Self
pub const FVE_E_WRONG_BOOTSECTOR: Self
pub const FVE_E_WRONG_SYSTEM_FS: Self
pub const FVE_E_POLICY_PASSWORD_REQUIRED: Self
pub const FVE_E_CANNOT_SET_FVEK_ENCRYPTED: Self
pub const FVE_E_CANNOT_ENCRYPT_NO_KEY: Self
pub const FVE_E_BOOTABLE_CDDVD: Self
pub const FVE_E_PROTECTOR_EXISTS: Self
pub const FVE_E_RELATIVE_PATH: Self
pub const FVE_E_PROTECTOR_NOT_FOUND: Self
pub const FVE_E_INVALID_KEY_FORMAT: Self
pub const FVE_E_INVALID_PASSWORD_FORMAT: Self
pub const FVE_E_FIPS_RNG_CHECK_FAILED: Self
pub const FVE_E_FIPS_PREVENTS_RECOVERY_PASSWORD: Self
pub const FVE_E_FIPS_PREVENTS_EXTERNAL_KEY_EXPORT: Self
pub const FVE_E_NOT_DECRYPTED: Self
pub const FVE_E_INVALID_PROTECTOR_TYPE: Self
pub const FVE_E_NO_PROTECTORS_TO_TEST: Self
pub const FVE_E_KEYFILE_NOT_FOUND: Self
pub const FVE_E_KEYFILE_INVALID: Self
pub const FVE_E_KEYFILE_NO_VMK: Self
pub const FVE_E_TPM_DISABLED: Self
pub const FVE_E_NOT_ALLOWED_IN_SAFE_MODE: Self
pub const FVE_E_TPM_INVALID_PCR: Self
pub const FVE_E_TPM_NO_VMK: Self
pub const FVE_E_PIN_INVALID: Self
pub const FVE_E_AUTH_INVALID_APPLICATION: Self
pub const FVE_E_AUTH_INVALID_CONFIG: Self
pub const FVE_E_FIPS_DISABLE_PROTECTION_NOT_ALLOWED: Self
pub const FVE_E_FS_NOT_EXTENDED: Self
pub const FVE_E_FIRMWARE_TYPE_NOT_SUPPORTED: Self
pub const FVE_E_NO_LICENSE: Self
pub const FVE_E_NOT_ON_STACK: Self
pub const FVE_E_FS_MOUNTED: Self
pub const FVE_E_TOKEN_NOT_IMPERSONATED: Self
pub const FVE_E_DRY_RUN_FAILED: Self
pub const FVE_E_REBOOT_REQUIRED: Self
pub const FVE_E_DEBUGGER_ENABLED: Self
pub const FVE_E_RAW_ACCESS: Self
pub const FVE_E_RAW_BLOCKED: Self
pub const FVE_E_BCD_APPLICATIONS_PATH_INCORRECT: Self
pub const FVE_E_NOT_ALLOWED_IN_VERSION: Self
pub const FVE_E_NO_AUTOUNLOCK_MASTER_KEY: Self
pub const FVE_E_MOR_FAILED: Self
pub const FVE_E_HIDDEN_VOLUME: Self
pub const FVE_E_TRANSIENT_STATE: Self
pub const FVE_E_PUBKEY_NOT_ALLOWED: Self
pub const FVE_E_VOLUME_HANDLE_OPEN: Self
pub const FVE_E_NO_FEATURE_LICENSE: Self
pub const FVE_E_INVALID_STARTUP_OPTIONS: Self
pub const FVE_E_POLICY_RECOVERY_PASSWORD_NOT_ALLOWED: Self
pub const FVE_E_POLICY_RECOVERY_PASSWORD_REQUIRED: Self
pub const FVE_E_POLICY_RECOVERY_KEY_NOT_ALLOWED: Self
pub const FVE_E_POLICY_RECOVERY_KEY_REQUIRED: Self
pub const FVE_E_POLICY_STARTUP_PIN_NOT_ALLOWED: Self
pub const FVE_E_POLICY_STARTUP_PIN_REQUIRED: Self
pub const FVE_E_POLICY_STARTUP_KEY_NOT_ALLOWED: Self
pub const FVE_E_POLICY_STARTUP_KEY_REQUIRED: Self
pub const FVE_E_POLICY_STARTUP_PIN_KEY_NOT_ALLOWED: Self
pub const FVE_E_POLICY_STARTUP_PIN_KEY_REQUIRED: Self
pub const FVE_E_POLICY_STARTUP_TPM_NOT_ALLOWED: Self
pub const FVE_E_POLICY_STARTUP_TPM_REQUIRED: Self
pub const FVE_E_POLICY_INVALID_PIN_LENGTH: Self
pub const FVE_E_KEY_PROTECTOR_NOT_SUPPORTED: Self
pub const FVE_E_POLICY_PASSPHRASE_NOT_ALLOWED: Self
pub const FVE_E_POLICY_PASSPHRASE_REQUIRED: Self
pub const FVE_E_FIPS_PREVENTS_PASSPHRASE: Self
pub const FVE_E_OS_VOLUME_PASSPHRASE_NOT_ALLOWED: Self
pub const FVE_E_INVALID_BITLOCKER_OID: Self
pub const FVE_E_VOLUME_TOO_SMALL: Self
pub const FVE_E_DV_NOT_SUPPORTED_ON_FS: Self
pub const FVE_E_DV_NOT_ALLOWED_BY_GP: Self
pub const FVE_E_POLICY_USER_CERTIFICATE_NOT_ALLOWED: Self
pub const FVE_E_POLICY_USER_CERTIFICATE_REQUIRED: Self
pub const FVE_E_POLICY_USER_CERT_MUST_BE_HW: Self
pub const FVE_E_POLICY_USER_CONFIGURE_FDV_AUTOUNLOCK_NOT_ALLOWED: Self
pub const FVE_E_POLICY_USER_CONFIGURE_RDV_AUTOUNLOCK_NOT_ALLOWED: Self
pub const FVE_E_POLICY_USER_CONFIGURE_RDV_NOT_ALLOWED: Self
pub const FVE_E_POLICY_USER_ENABLE_RDV_NOT_ALLOWED: Self
pub const FVE_E_POLICY_USER_DISABLE_RDV_NOT_ALLOWED: Self
pub const FVE_E_POLICY_INVALID_PASSPHRASE_LENGTH: Self
pub const FVE_E_POLICY_PASSPHRASE_TOO_SIMPLE: Self
pub const FVE_E_RECOVERY_PARTITION: Self
pub const FVE_E_POLICY_CONFLICT_FDV_RK_OFF_AUK_ON: Self
pub const FVE_E_POLICY_CONFLICT_RDV_RK_OFF_AUK_ON: Self
pub const FVE_E_NON_BITLOCKER_OID: Self
pub const FVE_E_POLICY_PROHIBITS_SELFSIGNED: Self
pub const FVE_E_POLICY_CONFLICT_RO_AND_STARTUP_KEY_REQUIRED: Self
pub const FVE_E_CONV_RECOVERY_FAILED: Self
pub const FVE_E_VIRTUALIZED_SPACE_TOO_BIG: Self
pub const FVE_E_POLICY_CONFLICT_OSV_RP_OFF_ADB_ON: Self
pub const FVE_E_POLICY_CONFLICT_FDV_RP_OFF_ADB_ON: Self
pub const FVE_E_POLICY_CONFLICT_RDV_RP_OFF_ADB_ON: Self
pub const FVE_E_NON_BITLOCKER_KU: Self
pub const FVE_E_PRIVATEKEY_AUTH_FAILED: Self
pub const FVE_E_REMOVAL_OF_DRA_FAILED: Self
pub const FVE_E_OPERATION_NOT_SUPPORTED_ON_VISTA_VOLUME: Self
pub const FVE_E_CANT_LOCK_AUTOUNLOCK_ENABLED_VOLUME: Self
pub const FVE_E_FIPS_HASH_KDF_NOT_ALLOWED: Self
pub const FVE_E_ENH_PIN_INVALID: Self
pub const FVE_E_INVALID_PIN_CHARS: Self
pub const FVE_E_INVALID_DATUM_TYPE: Self
pub const FVE_E_EFI_ONLY: Self
pub const FVE_E_MULTIPLE_NKP_CERTS: Self
pub const FVE_E_REMOVAL_OF_NKP_FAILED: Self
pub const FVE_E_INVALID_NKP_CERT: Self
pub const FVE_E_NO_EXISTING_PIN: Self
pub const FVE_E_PROTECTOR_CHANGE_PIN_MISMATCH: Self
pub const FVE_E_PIN_PROTECTOR_CHANGE_BY_STD_USER_DISALLOWED: Self
pub const FVE_E_PROTECTOR_CHANGE_MAX_PIN_CHANGE_ATTEMPTS_REACHED: Self
pub const FVE_E_POLICY_PASSPHRASE_REQUIRES_ASCII: Self
pub const FVE_E_FULL_ENCRYPTION_NOT_ALLOWED_ON_TP_STORAGE: Self
pub const FVE_E_WIPE_NOT_ALLOWED_ON_TP_STORAGE: Self
pub const FVE_E_KEY_LENGTH_NOT_SUPPORTED_BY_EDRIVE: Self
pub const FVE_E_NO_EXISTING_PASSPHRASE: Self
pub const FVE_E_PROTECTOR_CHANGE_PASSPHRASE_MISMATCH: Self
pub const FVE_E_PASSPHRASE_TOO_LONG: Self
pub const FVE_E_NO_PASSPHRASE_WITH_TPM: Self
pub const FVE_E_NO_TPM_WITH_PASSPHRASE: Self
pub const FVE_E_NOT_ALLOWED_ON_CSV_STACK: Self
pub const FVE_E_NOT_ALLOWED_ON_CLUSTER: Self
pub const FVE_E_EDRIVE_NO_FAILOVER_TO_SW: Self
pub const FVE_E_EDRIVE_BAND_IN_USE: Self
pub const FVE_E_EDRIVE_DISALLOWED_BY_GP: Self
pub const FVE_E_EDRIVE_INCOMPATIBLE_VOLUME: Self
pub const FVE_E_NOT_ALLOWED_TO_UPGRADE_WHILE_CONVERTING: Self
pub const FVE_E_EDRIVE_DV_NOT_SUPPORTED: Self
pub const FVE_E_NO_PREBOOT_KEYBOARD_DETECTED: Self
pub const FVE_E_NO_PREBOOT_KEYBOARD_OR_WINRE_DETECTED: Self
pub const FVE_E_POLICY_REQUIRES_STARTUP_PIN_ON_TOUCH_DEVICE: Self
pub const FVE_E_POLICY_REQUIRES_RECOVERY_PASSWORD_ON_TOUCH_DEVICE: Self
pub const FVE_E_WIPE_CANCEL_NOT_APPLICABLE: Self
pub const FVE_E_SECUREBOOT_DISABLED: Self
pub const FVE_E_SECUREBOOT_CONFIGURATION_INVALID: Self
pub const FVE_E_EDRIVE_DRY_RUN_FAILED: Self
pub const FVE_E_SHADOW_COPY_PRESENT: Self
pub const FVE_E_POLICY_INVALID_ENHANCED_BCD_SETTINGS: Self
pub const FVE_E_EDRIVE_INCOMPATIBLE_FIRMWARE: Self
pub const FVE_E_PROTECTOR_CHANGE_MAX_PASSPHRASE_CHANGE_ATTEMPTS_REACHED: Self
pub const FVE_E_PASSPHRASE_PROTECTOR_CHANGE_BY_STD_USER_DISALLOWED: Self
pub const FVE_E_LIVEID_ACCOUNT_SUSPENDED: Self
pub const FVE_E_LIVEID_ACCOUNT_BLOCKED: Self
pub const FVE_E_NOT_PROVISIONED_ON_ALL_VOLUMES: Self
pub const FVE_E_DE_FIXED_DATA_NOT_SUPPORTED: Self
pub const FVE_E_DE_HARDWARE_NOT_COMPLIANT: Self
pub const FVE_E_DE_WINRE_NOT_CONFIGURED: Self
pub const FVE_E_DE_PROTECTION_SUSPENDED: Self
pub const FVE_E_DE_OS_VOLUME_NOT_PROTECTED: Self
pub const FVE_E_DE_DEVICE_LOCKEDOUT: Self
pub const FVE_E_DE_PROTECTION_NOT_YET_ENABLED: Self
pub const FVE_E_INVALID_PIN_CHARS_DETAILED: Self
pub const FVE_E_DEVICE_LOCKOUT_COUNTER_UNAVAILABLE: Self
pub const FVE_E_DEVICELOCKOUT_COUNTER_MISMATCH: Self
pub const FVE_E_BUFFER_TOO_LARGE: Self
pub const FVE_E_NO_SUCH_CAPABILITY_ON_TARGET: Self
pub const FVE_E_DE_PREVENTED_FOR_OS: Self
pub const FVE_E_DE_VOLUME_OPTED_OUT: Self
pub const FVE_E_DE_VOLUME_NOT_SUPPORTED: Self
pub const FVE_E_EOW_NOT_SUPPORTED_IN_VERSION: Self
pub const FVE_E_ADBACKUP_NOT_ENABLED: Self
pub const FVE_E_VOLUME_EXTEND_PREVENTS_EOW_DECRYPT: Self
pub const FVE_E_NOT_DE_VOLUME: Self
pub const FVE_E_PROTECTION_CANNOT_BE_DISABLED: Self
pub const FVE_E_OSV_KSR_NOT_ALLOWED: Self
pub const FVE_E_AD_BACKUP_REQUIRED_POLICY_NOT_SET_OS_DRIVE: Self
pub const FVE_E_AD_BACKUP_REQUIRED_POLICY_NOT_SET_FIXED_DRIVE: Self
pub const FVE_E_AD_BACKUP_REQUIRED_POLICY_NOT_SET_REMOVABLE_DRIVE: Self
pub const FVE_E_KEY_ROTATION_NOT_SUPPORTED: Self
pub const FVE_E_EXECUTE_REQUEST_SENT_TOO_SOON: Self
pub const FVE_E_KEY_ROTATION_NOT_ENABLED: Self
pub const FVE_E_DEVICE_NOT_JOINED: Self
pub const FWP_E_CALLOUT_NOT_FOUND: Self
pub const FWP_E_CONDITION_NOT_FOUND: Self
pub const FWP_E_FILTER_NOT_FOUND: Self
pub const FWP_E_LAYER_NOT_FOUND: Self
pub const FWP_E_PROVIDER_NOT_FOUND: Self
pub const FWP_E_PROVIDER_CONTEXT_NOT_FOUND: Self
pub const FWP_E_SUBLAYER_NOT_FOUND: Self
pub const FWP_E_NOT_FOUND: Self
pub const FWP_E_ALREADY_EXISTS: Self
pub const FWP_E_IN_USE: Self
pub const FWP_E_DYNAMIC_SESSION_IN_PROGRESS: Self
pub const FWP_E_WRONG_SESSION: Self
pub const FWP_E_NO_TXN_IN_PROGRESS: Self
pub const FWP_E_TXN_IN_PROGRESS: Self
pub const FWP_E_TXN_ABORTED: Self
pub const FWP_E_SESSION_ABORTED: Self
pub const FWP_E_INCOMPATIBLE_TXN: Self
pub const FWP_E_TIMEOUT: Self
pub const FWP_E_NET_EVENTS_DISABLED: Self
pub const FWP_E_INCOMPATIBLE_LAYER: Self
pub const FWP_E_KM_CLIENTS_ONLY: Self
pub const FWP_E_LIFETIME_MISMATCH: Self
pub const FWP_E_BUILTIN_OBJECT: Self
pub const FWP_E_TOO_MANY_CALLOUTS: Self
pub const FWP_E_NOTIFICATION_DROPPED: Self
pub const FWP_E_TRAFFIC_MISMATCH: Self
pub const FWP_E_INCOMPATIBLE_SA_STATE: Self
pub const FWP_E_NULL_POINTER: Self
pub const FWP_E_INVALID_ENUMERATOR: Self
pub const FWP_E_INVALID_FLAGS: Self
pub const FWP_E_INVALID_NET_MASK: Self
pub const FWP_E_INVALID_RANGE: Self
pub const FWP_E_INVALID_INTERVAL: Self
pub const FWP_E_ZERO_LENGTH_ARRAY: Self
pub const FWP_E_NULL_DISPLAY_NAME: Self
pub const FWP_E_INVALID_ACTION_TYPE: Self
pub const FWP_E_INVALID_WEIGHT: Self
pub const FWP_E_MATCH_TYPE_MISMATCH: Self
pub const FWP_E_TYPE_MISMATCH: Self
pub const FWP_E_OUT_OF_BOUNDS: Self
pub const FWP_E_RESERVED: Self
pub const FWP_E_DUPLICATE_CONDITION: Self
pub const FWP_E_DUPLICATE_KEYMOD: Self
pub const FWP_E_ACTION_INCOMPATIBLE_WITH_LAYER: Self
pub const FWP_E_ACTION_INCOMPATIBLE_WITH_SUBLAYER: Self
pub const FWP_E_CONTEXT_INCOMPATIBLE_WITH_LAYER: Self
pub const FWP_E_CONTEXT_INCOMPATIBLE_WITH_CALLOUT: Self
pub const FWP_E_INCOMPATIBLE_AUTH_METHOD: Self
pub const FWP_E_INCOMPATIBLE_DH_GROUP: Self
pub const FWP_E_EM_NOT_SUPPORTED: Self
pub const FWP_E_NEVER_MATCH: Self
pub const FWP_E_PROVIDER_CONTEXT_MISMATCH: Self
pub const FWP_E_INVALID_PARAMETER: Self
pub const FWP_E_TOO_MANY_SUBLAYERS: Self
pub const FWP_E_CALLOUT_NOTIFICATION_FAILED: Self
pub const FWP_E_INVALID_AUTH_TRANSFORM: Self
pub const FWP_E_INVALID_CIPHER_TRANSFORM: Self
pub const FWP_E_INCOMPATIBLE_CIPHER_TRANSFORM: Self
pub const FWP_E_INVALID_TRANSFORM_COMBINATION: Self
pub const FWP_E_DUPLICATE_AUTH_METHOD: Self
pub const FWP_E_INVALID_TUNNEL_ENDPOINT: Self
pub const FWP_E_L2_DRIVER_NOT_READY: Self
pub const FWP_E_KEY_DICTATOR_ALREADY_REGISTERED: Self
pub const FWP_E_KEY_DICTATION_INVALID_KEYING_MATERIAL: Self
pub const FWP_E_CONNECTIONS_DISABLED: Self
pub const FWP_E_INVALID_DNS_NAME: Self
pub const FWP_E_STILL_ON: Self
pub const FWP_E_IKEEXT_NOT_RUNNING: Self
pub const FWP_E_DROP_NOICMP: Self
pub const WS_S_ASYNC: Self
pub const WS_S_END: Self
pub const WS_E_INVALID_FORMAT: Self
pub const WS_E_OBJECT_FAULTED: Self
pub const WS_E_NUMERIC_OVERFLOW: Self
pub const WS_E_INVALID_OPERATION: Self
pub const WS_E_OPERATION_ABORTED: Self
pub const WS_E_ENDPOINT_ACCESS_DENIED: Self
pub const WS_E_OPERATION_TIMED_OUT: Self
pub const WS_E_OPERATION_ABANDONED: Self
pub const WS_E_QUOTA_EXCEEDED: Self
pub const WS_E_NO_TRANSLATION_AVAILABLE: Self
pub const WS_E_SECURITY_VERIFICATION_FAILURE: Self
pub const WS_E_ADDRESS_IN_USE: Self
pub const WS_E_ADDRESS_NOT_AVAILABLE: Self
pub const WS_E_ENDPOINT_NOT_FOUND: Self
pub const WS_E_ENDPOINT_NOT_AVAILABLE: Self
pub const WS_E_ENDPOINT_FAILURE: Self
pub const WS_E_ENDPOINT_UNREACHABLE: Self
pub const WS_E_ENDPOINT_ACTION_NOT_SUPPORTED: Self
pub const WS_E_ENDPOINT_TOO_BUSY: Self
pub const WS_E_ENDPOINT_FAULT_RECEIVED: Self
pub const WS_E_ENDPOINT_DISCONNECTED: Self
pub const WS_E_PROXY_FAILURE: Self
pub const WS_E_PROXY_ACCESS_DENIED: Self
pub const WS_E_NOT_SUPPORTED: Self
pub const WS_E_PROXY_REQUIRES_BASIC_AUTH: Self
pub const WS_E_PROXY_REQUIRES_DIGEST_AUTH: Self
pub const WS_E_PROXY_REQUIRES_NTLM_AUTH: Self
pub const WS_E_PROXY_REQUIRES_NEGOTIATE_AUTH: Self
pub const WS_E_SERVER_REQUIRES_BASIC_AUTH: Self
pub const WS_E_SERVER_REQUIRES_DIGEST_AUTH: Self
pub const WS_E_SERVER_REQUIRES_NTLM_AUTH: Self
pub const WS_E_SERVER_REQUIRES_NEGOTIATE_AUTH: Self
pub const WS_E_INVALID_ENDPOINT_URL: Self
pub const WS_E_OTHER: Self
pub const WS_E_SECURITY_TOKEN_EXPIRED: Self
pub const WS_E_SECURITY_SYSTEM_FAILURE: Self
pub const HCS_E_TERMINATED_DURING_START: Self
pub const HCS_E_IMAGE_MISMATCH: Self
pub const HCS_E_HYPERV_NOT_INSTALLED: Self
pub const HCS_E_INVALID_STATE: Self
pub const HCS_E_UNEXPECTED_EXIT: Self
pub const HCS_E_TERMINATED: Self
pub const HCS_E_CONNECT_FAILED: Self
pub const HCS_E_CONNECTION_TIMEOUT: Self
pub const HCS_E_CONNECTION_CLOSED: Self
pub const HCS_E_UNKNOWN_MESSAGE: Self
pub const HCS_E_UNSUPPORTED_PROTOCOL_VERSION: Self
pub const HCS_E_INVALID_JSON: Self
pub const HCS_E_SYSTEM_NOT_FOUND: Self
pub const HCS_E_SYSTEM_ALREADY_EXISTS: Self
pub const HCS_E_SYSTEM_ALREADY_STOPPED: Self
pub const HCS_E_PROTOCOL_ERROR: Self
pub const HCS_E_INVALID_LAYER: Self
pub const HCS_E_WINDOWS_INSIDER_REQUIRED: Self
pub const HCS_E_SERVICE_NOT_AVAILABLE: Self
pub const HCS_E_OPERATION_NOT_STARTED: Self
pub const HCS_E_OPERATION_ALREADY_STARTED: Self
pub const HCS_E_OPERATION_PENDING: Self
pub const HCS_E_OPERATION_TIMEOUT: Self
pub const HCS_E_OPERATION_SYSTEM_CALLBACK_ALREADY_SET: Self
pub const HCS_E_OPERATION_RESULT_ALLOCATION_FAILED: Self
pub const HCS_E_ACCESS_DENIED: Self
pub const HCS_E_GUEST_CRITICAL_ERROR: Self
pub const WHV_E_UNKNOWN_CAPABILITY: Self
pub const WHV_E_INSUFFICIENT_BUFFER: Self
pub const WHV_E_UNKNOWN_PROPERTY: Self
pub const WHV_E_UNSUPPORTED_HYPERVISOR_CONFIG: Self
pub const WHV_E_INVALID_PARTITION_CONFIG: Self
pub const WHV_E_GPA_RANGE_NOT_FOUND: Self
pub const WHV_E_VP_ALREADY_EXISTS: Self
pub const WHV_E_VP_DOES_NOT_EXIST: Self
pub const WHV_E_INVALID_VP_STATE: Self
pub const WHV_E_INVALID_VP_REGISTER_NAME: Self
pub const HCN_E_NETWORK_NOT_FOUND: Self
pub const HCN_E_ENDPOINT_NOT_FOUND: Self
pub const HCN_E_LAYER_NOT_FOUND: Self
pub const HCN_E_SWITCH_NOT_FOUND: Self
pub const HCN_E_SUBNET_NOT_FOUND: Self
pub const HCN_E_ADAPTER_NOT_FOUND: Self
pub const HCN_E_PORT_NOT_FOUND: Self
pub const HCN_E_POLICY_NOT_FOUND: Self
pub const HCN_E_VFP_PORTSETTING_NOT_FOUND: Self
pub const HCN_E_INVALID_NETWORK: Self
pub const HCN_E_INVALID_NETWORK_TYPE: Self
pub const HCN_E_INVALID_ENDPOINT: Self
pub const HCN_E_INVALID_POLICY: Self
pub const HCN_E_INVALID_POLICY_TYPE: Self
pub const HCN_E_INVALID_REMOTE_ENDPOINT_OPERATION: Self
pub const HCN_E_NETWORK_ALREADY_EXISTS: Self
pub const HCN_E_LAYER_ALREADY_EXISTS: Self
pub const HCN_E_POLICY_ALREADY_EXISTS: Self
pub const HCN_E_PORT_ALREADY_EXISTS: Self
pub const HCN_E_ENDPOINT_ALREADY_ATTACHED: Self
pub const HCN_E_REQUEST_UNSUPPORTED: Self
pub const HCN_E_MAPPING_NOT_SUPPORTED: Self
pub const HCN_E_DEGRADED_OPERATION: Self
pub const HCN_E_SHARED_SWITCH_MODIFICATION: Self
pub const HCN_E_GUID_CONVERSION_FAILURE: Self
pub const HCN_E_REGKEY_FAILURE: Self
pub const HCN_E_INVALID_JSON: Self
pub const HCN_E_INVALID_JSON_REFERENCE: Self
pub const HCN_E_ENDPOINT_SHARING_DISABLED: Self
pub const HCN_E_INVALID_IP: Self
pub const HCN_E_SWITCH_EXTENSION_NOT_FOUND: Self
pub const HCN_E_MANAGER_STOPPED: Self
pub const GCN_E_MODULE_NOT_FOUND: Self
pub const GCN_E_NO_REQUEST_HANDLERS: Self
pub const GCN_E_REQUEST_UNSUPPORTED: Self
pub const GCN_E_RUNTIMEKEYS_FAILED: Self
pub const GCN_E_NETADAPTER_TIMEOUT: Self
pub const GCN_E_NETADAPTER_NOT_FOUND: Self
pub const GCN_E_NETCOMPARTMENT_NOT_FOUND: Self
pub const GCN_E_NETINTERFACE_NOT_FOUND: Self
pub const GCN_E_DEFAULTNAMESPACE_EXISTS: Self
pub const HCN_E_ICS_DISABLED: Self
pub const HCN_E_ENDPOINT_NAMESPACE_ALREADY_EXISTS: Self
pub const HCN_E_ENTITY_HAS_REFERENCES: Self
pub const HCN_E_INVALID_INTERNAL_PORT: Self
pub const HCN_E_NAMESPACE_ATTACH_FAILED: Self
pub const HCN_E_ADDR_INVALID_OR_RESERVED: Self
pub const WPN_E_CHANNEL_CLOSED: Self
pub const WPN_E_CHANNEL_REQUEST_NOT_COMPLETE: Self
pub const WPN_E_INVALID_APP: Self
pub const WPN_E_OUTSTANDING_CHANNEL_REQUEST: Self
pub const WPN_E_DUPLICATE_CHANNEL: Self
pub const WPN_E_PLATFORM_UNAVAILABLE: Self
pub const WPN_E_NOTIFICATION_POSTED: Self
pub const WPN_E_NOTIFICATION_HIDDEN: Self
pub const WPN_E_NOTIFICATION_NOT_POSTED: Self
pub const WPN_E_CLOUD_DISABLED: Self
pub const WPN_E_CLOUD_INCAPABLE: Self
pub const WPN_E_CLOUD_AUTH_UNAVAILABLE: Self
pub const WPN_E_CLOUD_SERVICE_UNAVAILABLE: Self
pub const WPN_E_FAILED_LOCK_SCREEN_UPDATE_INTIALIZATION: Self
pub const WPN_E_NOTIFICATION_DISABLED: Self
pub const WPN_E_NOTIFICATION_INCAPABLE: Self
pub const WPN_E_INTERNET_INCAPABLE: Self
pub const WPN_E_NOTIFICATION_TYPE_DISABLED: Self
pub const WPN_E_NOTIFICATION_SIZE: Self
pub const WPN_E_TAG_SIZE: Self
pub const WPN_E_ACCESS_DENIED: Self
pub const WPN_E_DUPLICATE_REGISTRATION: Self
pub const WPN_E_PUSH_NOTIFICATION_INCAPABLE: Self
pub const WPN_E_DEV_ID_SIZE: Self
pub const WPN_E_TAG_ALPHANUMERIC: Self
pub const WPN_E_INVALID_HTTP_STATUS_CODE: Self
pub const WPN_E_OUT_OF_SESSION: Self
pub const WPN_E_POWER_SAVE: Self
pub const WPN_E_IMAGE_NOT_FOUND_IN_CACHE: Self
pub const WPN_E_ALL_URL_NOT_COMPLETED: Self
pub const WPN_E_INVALID_CLOUD_IMAGE: Self
pub const WPN_E_NOTIFICATION_ID_MATCHED: Self
pub const WPN_E_CALLBACK_ALREADY_REGISTERED: Self
pub const WPN_E_TOAST_NOTIFICATION_DROPPED: Self
pub const WPN_E_STORAGE_LOCKED: Self
pub const WPN_E_GROUP_SIZE: Self
pub const WPN_E_GROUP_ALPHANUMERIC: Self
pub const WPN_E_CLOUD_DISABLED_FOR_APP: Self
pub const E_MBN_CONTEXT_NOT_ACTIVATED: Self
pub const E_MBN_BAD_SIM: Self
pub const E_MBN_DATA_CLASS_NOT_AVAILABLE: Self
pub const E_MBN_INVALID_ACCESS_STRING: Self
pub const E_MBN_MAX_ACTIVATED_CONTEXTS: Self
pub const E_MBN_PACKET_SVC_DETACHED: Self
pub const E_MBN_PROVIDER_NOT_VISIBLE: Self
pub const E_MBN_RADIO_POWER_OFF: Self
pub const E_MBN_SERVICE_NOT_ACTIVATED: Self
pub const E_MBN_SIM_NOT_INSERTED: Self
pub const E_MBN_VOICE_CALL_IN_PROGRESS: Self
pub const E_MBN_INVALID_CACHE: Self
pub const E_MBN_NOT_REGISTERED: Self
pub const E_MBN_PROVIDERS_NOT_FOUND: Self
pub const E_MBN_PIN_NOT_SUPPORTED: Self
pub const E_MBN_PIN_REQUIRED: Self
pub const E_MBN_PIN_DISABLED: Self
pub const E_MBN_FAILURE: Self
pub const E_MBN_INVALID_PROFILE: Self
pub const E_MBN_DEFAULT_PROFILE_EXIST: Self
pub const E_MBN_SMS_ENCODING_NOT_SUPPORTED: Self
pub const E_MBN_SMS_FILTER_NOT_SUPPORTED: Self
pub const E_MBN_SMS_INVALID_MEMORY_INDEX: Self
pub const E_MBN_SMS_LANG_NOT_SUPPORTED: Self
pub const E_MBN_SMS_MEMORY_FAILURE: Self
pub const E_MBN_SMS_NETWORK_TIMEOUT: Self
pub const E_MBN_SMS_UNKNOWN_SMSC_ADDRESS: Self
pub const E_MBN_SMS_FORMAT_NOT_SUPPORTED: Self
pub const E_MBN_SMS_OPERATION_NOT_ALLOWED: Self
pub const E_MBN_SMS_MEMORY_FULL: Self
pub const PEER_E_IPV6_NOT_INSTALLED: Self
pub const PEER_E_NOT_INITIALIZED: Self
pub const PEER_E_CANNOT_START_SERVICE: Self
pub const PEER_E_NOT_LICENSED: Self
pub const PEER_E_INVALID_GRAPH: Self
pub const PEER_E_DBNAME_CHANGED: Self
pub const PEER_E_DUPLICATE_GRAPH: Self
pub const PEER_E_GRAPH_NOT_READY: Self
pub const PEER_E_GRAPH_SHUTTING_DOWN: Self
pub const PEER_E_GRAPH_IN_USE: Self
pub const PEER_E_INVALID_DATABASE: Self
pub const PEER_E_TOO_MANY_ATTRIBUTES: Self
pub const PEER_E_CONNECTION_NOT_FOUND: Self
pub const PEER_E_CONNECT_SELF: Self
pub const PEER_E_ALREADY_LISTENING: Self
pub const PEER_E_NODE_NOT_FOUND: Self
pub const PEER_E_CONNECTION_FAILED: Self
pub const PEER_E_CONNECTION_NOT_AUTHENTICATED: Self
pub const PEER_E_CONNECTION_REFUSED: Self
pub const PEER_E_CLASSIFIER_TOO_LONG: Self
pub const PEER_E_TOO_MANY_IDENTITIES: Self
pub const PEER_E_NO_KEY_ACCESS: Self
pub const PEER_E_GROUPS_EXIST: Self
pub const PEER_E_RECORD_NOT_FOUND: Self
pub const PEER_E_DATABASE_ACCESSDENIED: Self
pub const PEER_E_DBINITIALIZATION_FAILED: Self
pub const PEER_E_MAX_RECORD_SIZE_EXCEEDED: Self
pub const PEER_E_DATABASE_ALREADY_PRESENT: Self
pub const PEER_E_DATABASE_NOT_PRESENT: Self
pub const PEER_E_IDENTITY_NOT_FOUND: Self
pub const PEER_E_EVENT_HANDLE_NOT_FOUND: Self
pub const PEER_E_INVALID_SEARCH: Self
pub const PEER_E_INVALID_ATTRIBUTES: Self
pub const PEER_E_INVITATION_NOT_TRUSTED: Self
pub const PEER_E_CHAIN_TOO_LONG: Self
pub const PEER_E_INVALID_TIME_PERIOD: Self
pub const PEER_E_CIRCULAR_CHAIN_DETECTED: Self
pub const PEER_E_CERT_STORE_CORRUPTED: Self
pub const PEER_E_NO_CLOUD: Self
pub const PEER_E_CLOUD_NAME_AMBIGUOUS: Self
pub const PEER_E_INVALID_RECORD: Self
pub const PEER_E_NOT_AUTHORIZED: Self
pub const PEER_E_PASSWORD_DOES_NOT_MEET_POLICY: Self
pub const PEER_E_DEFERRED_VALIDATION: Self
pub const PEER_E_INVALID_GROUP_PROPERTIES: Self
pub const PEER_E_INVALID_PEER_NAME: Self
pub const PEER_E_INVALID_CLASSIFIER: Self
pub const PEER_E_INVALID_FRIENDLY_NAME: Self
pub const PEER_E_INVALID_ROLE_PROPERTY: Self
pub const PEER_E_INVALID_CLASSIFIER_PROPERTY: Self
pub const PEER_E_INVALID_RECORD_EXPIRATION: Self
pub const PEER_E_INVALID_CREDENTIAL_INFO: Self
pub const PEER_E_INVALID_CREDENTIAL: Self
pub const PEER_E_INVALID_RECORD_SIZE: Self
pub const PEER_E_UNSUPPORTED_VERSION: Self
pub const PEER_E_GROUP_NOT_READY: Self
pub const PEER_E_GROUP_IN_USE: Self
pub const PEER_E_INVALID_GROUP: Self
pub const PEER_E_NO_MEMBERS_FOUND: Self
pub const PEER_E_NO_MEMBER_CONNECTIONS: Self
pub const PEER_E_UNABLE_TO_LISTEN: Self
pub const PEER_E_IDENTITY_DELETED: Self
pub const PEER_E_SERVICE_NOT_AVAILABLE: Self
pub const PEER_E_CONTACT_NOT_FOUND: Self
pub const PEER_S_GRAPH_DATA_CREATED: Self
pub const PEER_S_NO_EVENT_DATA: Self
pub const PEER_S_ALREADY_CONNECTED: Self
pub const PEER_S_SUBSCRIPTION_EXISTS: Self
pub const PEER_S_NO_CONNECTIVITY: Self
pub const PEER_S_ALREADY_A_MEMBER: Self
pub const PEER_E_CANNOT_CONVERT_PEER_NAME: Self
pub const PEER_E_INVALID_PEER_HOST_NAME: Self
pub const PEER_E_NO_MORE: Self
pub const PEER_E_PNRP_DUPLICATE_PEER_NAME: Self
pub const PEER_E_INVITE_CANCELLED: Self
pub const PEER_E_INVITE_RESPONSE_NOT_AVAILABLE: Self
pub const PEER_E_NOT_SIGNED_IN: Self
pub const PEER_E_PRIVACY_DECLINED: Self
pub const PEER_E_TIMEOUT: Self
pub const PEER_E_INVALID_ADDRESS: Self
pub const PEER_E_FW_EXCEPTION_DISABLED: Self
pub const PEER_E_FW_BLOCKED_BY_POLICY: Self
pub const PEER_E_FW_BLOCKED_BY_SHIELDS_UP: Self
pub const PEER_E_FW_DECLINED: Self
pub const UI_E_CREATE_FAILED: Self
pub const UI_E_SHUTDOWN_CALLED: Self
pub const UI_E_ILLEGAL_REENTRANCY: Self
pub const UI_E_OBJECT_SEALED: Self
pub const UI_E_VALUE_NOT_SET: Self
pub const UI_E_VALUE_NOT_DETERMINED: Self
pub const UI_E_INVALID_OUTPUT: Self
pub const UI_E_BOOLEAN_EXPECTED: Self
pub const UI_E_DIFFERENT_OWNER: Self
pub const UI_E_AMBIGUOUS_MATCH: Self
pub const UI_E_FP_OVERFLOW: Self
pub const UI_E_WRONG_THREAD: Self
pub const UI_E_STORYBOARD_ACTIVE: Self
pub const UI_E_STORYBOARD_NOT_PLAYING: Self
pub const UI_E_START_KEYFRAME_AFTER_END: Self
pub const UI_E_END_KEYFRAME_NOT_DETERMINED: Self
pub const UI_E_LOOPS_OVERLAP: Self
pub const UI_E_TRANSITION_ALREADY_USED: Self
pub const UI_E_TRANSITION_NOT_IN_STORYBOARD: Self
pub const UI_E_TRANSITION_ECLIPSED: Self
pub const UI_E_TIME_BEFORE_LAST_UPDATE: Self
pub const UI_E_TIMER_CLIENT_ALREADY_CONNECTED: Self
pub const UI_E_INVALID_DIMENSION: Self
pub const UI_E_PRIMITIVE_OUT_OF_BOUNDS: Self
pub const UI_E_WINDOW_CLOSED: Self
pub const E_BLUETOOTH_ATT_INVALID_HANDLE: Self
pub const E_BLUETOOTH_ATT_READ_NOT_PERMITTED: Self
pub const E_BLUETOOTH_ATT_WRITE_NOT_PERMITTED: Self
pub const E_BLUETOOTH_ATT_INVALID_PDU: Self
pub const E_BLUETOOTH_ATT_INSUFFICIENT_AUTHENTICATION: Self
pub const E_BLUETOOTH_ATT_REQUEST_NOT_SUPPORTED: Self
pub const E_BLUETOOTH_ATT_INVALID_OFFSET: Self
pub const E_BLUETOOTH_ATT_INSUFFICIENT_AUTHORIZATION: Self
pub const E_BLUETOOTH_ATT_PREPARE_QUEUE_FULL: Self
pub const E_BLUETOOTH_ATT_ATTRIBUTE_NOT_FOUND: Self
pub const E_BLUETOOTH_ATT_ATTRIBUTE_NOT_LONG: Self
pub const E_BLUETOOTH_ATT_INSUFFICIENT_ENCRYPTION_KEY_SIZE: Self
pub const E_BLUETOOTH_ATT_INVALID_ATTRIBUTE_VALUE_LENGTH: Self
pub const E_BLUETOOTH_ATT_UNLIKELY: Self
pub const E_BLUETOOTH_ATT_INSUFFICIENT_ENCRYPTION: Self
pub const E_BLUETOOTH_ATT_UNSUPPORTED_GROUP_TYPE: Self
pub const E_BLUETOOTH_ATT_INSUFFICIENT_RESOURCES: Self
pub const E_BLUETOOTH_ATT_UNKNOWN_ERROR: Self
pub const E_AUDIO_ENGINE_NODE_NOT_FOUND: Self
pub const E_HDAUDIO_EMPTY_CONNECTION_LIST: Self
pub const E_HDAUDIO_CONNECTION_LIST_NOT_SUPPORTED: Self
pub const E_HDAUDIO_NO_LOGICAL_DEVICES_CREATED: Self
pub const E_HDAUDIO_NULL_LINKED_LIST_ENTRY: Self
pub const STATEREPOSITORY_E_CONCURRENCY_LOCKING_FAILURE: Self
pub const STATEREPOSITORY_E_STATEMENT_INPROGRESS: Self
pub const STATEREPOSITORY_E_CONFIGURATION_INVALID: Self
pub const STATEREPOSITORY_E_UNKNOWN_SCHEMA_VERSION: Self
pub const STATEREPOSITORY_ERROR_DICTIONARY_CORRUPTED: Self
pub const STATEREPOSITORY_E_BLOCKED: Self
pub const STATEREPOSITORY_E_BUSY_RETRY: Self
pub const STATEREPOSITORY_E_BUSY_RECOVERY_RETRY: Self
pub const STATEREPOSITORY_E_LOCKED_RETRY: Self
pub const STATEREPOSITORY_E_LOCKED_SHAREDCACHE_RETRY: Self
pub const STATEREPOSITORY_E_TRANSACTION_REQUIRED: Self
pub const STATEREPOSITORY_E_BUSY_TIMEOUT_EXCEEDED: Self
pub const STATEREPOSITORY_E_BUSY_RECOVERY_TIMEOUT_EXCEEDED: Self
pub const STATEREPOSITORY_E_LOCKED_TIMEOUT_EXCEEDED: Self
pub const STATEREPOSITORY_E_LOCKED_SHAREDCACHE_TIMEOUT_EXCEEDED: Self
pub const STATEREPOSITORY_E_SERVICE_STOP_IN_PROGRESS: Self
pub const STATEREPOSTORY_E_NESTED_TRANSACTION_NOT_SUPPORTED: Self
pub const STATEREPOSITORY_ERROR_CACHE_CORRUPTED: Self
pub const STATEREPOSITORY_TRANSACTION_CALLER_ID_CHANGED: Self
pub const STATEREPOSITORY_TRANSACTION_IN_PROGRESS: Self
pub const ERROR_SPACES_POOL_WAS_DELETED: Self
pub const ERROR_SPACES_FAULT_DOMAIN_TYPE_INVALID: Self
pub const ERROR_SPACES_INTERNAL_ERROR: Self
pub const ERROR_SPACES_RESILIENCY_TYPE_INVALID: Self
pub const ERROR_SPACES_DRIVE_SECTOR_SIZE_INVALID: Self
pub const ERROR_SPACES_DRIVE_REDUNDANCY_INVALID: Self
pub const ERROR_SPACES_NUMBER_OF_DATA_COPIES_INVALID: Self
pub const ERROR_SPACES_PARITY_LAYOUT_INVALID: Self
pub const ERROR_SPACES_INTERLEAVE_LENGTH_INVALID: Self
pub const ERROR_SPACES_NUMBER_OF_COLUMNS_INVALID: Self
pub const ERROR_SPACES_NOT_ENOUGH_DRIVES: Self
pub const ERROR_SPACES_EXTENDED_ERROR: Self
pub const ERROR_SPACES_PROVISIONING_TYPE_INVALID: Self
pub const ERROR_SPACES_ALLOCATION_SIZE_INVALID: Self
pub const ERROR_SPACES_ENCLOSURE_AWARE_INVALID: Self
pub const ERROR_SPACES_WRITE_CACHE_SIZE_INVALID: Self
pub const ERROR_SPACES_NUMBER_OF_GROUPS_INVALID: Self
pub const ERROR_SPACES_DRIVE_OPERATIONAL_STATE_INVALID: Self
pub const ERROR_SPACES_ENTRY_INCOMPLETE: Self
pub const ERROR_SPACES_ENTRY_INVALID: Self
pub const ERROR_VOLSNAP_BOOTFILE_NOT_VALID: Self
pub const ERROR_VOLSNAP_ACTIVATION_TIMEOUT: Self
pub const ERROR_TIERING_NOT_SUPPORTED_ON_VOLUME: Self
pub const ERROR_TIERING_VOLUME_DISMOUNT_IN_PROGRESS: Self
pub const ERROR_TIERING_STORAGE_TIER_NOT_FOUND: Self
pub const ERROR_TIERING_INVALID_FILE_ID: Self
pub const ERROR_TIERING_WRONG_CLUSTER_NODE: Self
pub const ERROR_TIERING_ALREADY_PROCESSING: Self
pub const ERROR_TIERING_CANNOT_PIN_OBJECT: Self
pub const ERROR_TIERING_FILE_IS_NOT_PINNED: Self
pub const ERROR_NOT_A_TIERED_VOLUME: Self
pub const ERROR_ATTRIBUTE_NOT_PRESENT: Self
pub const ERROR_SECCORE_INVALID_COMMAND: Self
pub const ERROR_NO_APPLICABLE_APP_LICENSES_FOUND: Self
pub const ERROR_CLIP_LICENSE_NOT_FOUND: Self
pub const ERROR_CLIP_DEVICE_LICENSE_MISSING: Self
pub const ERROR_CLIP_LICENSE_INVALID_SIGNATURE: Self
pub const ERROR_CLIP_KEYHOLDER_LICENSE_MISSING_OR_INVALID: Self
pub const ERROR_CLIP_LICENSE_EXPIRED: Self
pub const ERROR_CLIP_LICENSE_SIGNED_BY_UNKNOWN_SOURCE: Self
pub const ERROR_CLIP_LICENSE_NOT_SIGNED: Self
pub const ERROR_CLIP_LICENSE_HARDWARE_ID_OUT_OF_TOLERANCE: Self
pub const ERROR_CLIP_LICENSE_DEVICE_ID_MISMATCH: Self
pub const D3D10_ERROR_TOO_MANY_UNIQUE_STATE_OBJECTS: Self
pub const D3D10_ERROR_FILE_NOT_FOUND: Self
pub const D3D11_ERROR_TOO_MANY_UNIQUE_STATE_OBJECTS: Self
pub const D3D11_ERROR_FILE_NOT_FOUND: Self
pub const D3D11_ERROR_TOO_MANY_UNIQUE_VIEW_OBJECTS: Self
pub const D3D11_ERROR_DEFERRED_CONTEXT_MAP_WITHOUT_INITIAL_DISCARD: Self
pub const D3D12_ERROR_ADAPTER_NOT_FOUND: Self
pub const D3D12_ERROR_DRIVER_VERSION_MISMATCH: Self
pub const D2DERR_WRONG_STATE: Self
pub const D2DERR_NOT_INITIALIZED: Self
pub const D2DERR_UNSUPPORTED_OPERATION: Self
pub const D2DERR_SCANNER_FAILED: Self
pub const D2DERR_SCREEN_ACCESS_DENIED: Self
pub const D2DERR_DISPLAY_STATE_INVALID: Self
pub const D2DERR_ZERO_VECTOR: Self
pub const D2DERR_INTERNAL_ERROR: Self
pub const D2DERR_DISPLAY_FORMAT_NOT_SUPPORTED: Self
pub const D2DERR_INVALID_CALL: Self
pub const D2DERR_NO_HARDWARE_DEVICE: Self
pub const D2DERR_RECREATE_TARGET: Self
pub const D2DERR_TOO_MANY_SHADER_ELEMENTS: Self
pub const D2DERR_SHADER_COMPILE_FAILED: Self
pub const D2DERR_MAX_TEXTURE_SIZE_EXCEEDED: Self
pub const D2DERR_UNSUPPORTED_VERSION: Self
pub const D2DERR_BAD_NUMBER: Self
pub const D2DERR_WRONG_FACTORY: Self
pub const D2DERR_LAYER_ALREADY_IN_USE: Self
pub const D2DERR_POP_CALL_DID_NOT_MATCH_PUSH: Self
pub const D2DERR_WRONG_RESOURCE_DOMAIN: Self
pub const D2DERR_PUSH_POP_UNBALANCED: Self
pub const D2DERR_RENDER_TARGET_HAS_LAYER_OR_CLIPRECT: Self
pub const D2DERR_INCOMPATIBLE_BRUSH_TYPES: Self
pub const D2DERR_WIN32_ERROR: Self
pub const D2DERR_TARGET_NOT_GDI_COMPATIBLE: Self
pub const D2DERR_TEXT_EFFECT_IS_WRONG_TYPE: Self
pub const D2DERR_TEXT_RENDERER_NOT_RELEASED: Self
pub const D2DERR_EXCEEDS_MAX_BITMAP_SIZE: Self
pub const D2DERR_INVALID_GRAPH_CONFIGURATION: Self
pub const D2DERR_INVALID_INTERNAL_GRAPH_CONFIGURATION: Self
pub const D2DERR_CYCLIC_GRAPH: Self
pub const D2DERR_BITMAP_CANNOT_DRAW: Self
pub const D2DERR_OUTSTANDING_BITMAP_REFERENCES: Self
pub const D2DERR_ORIGINAL_TARGET_NOT_BOUND: Self
pub const D2DERR_INVALID_TARGET: Self
pub const D2DERR_BITMAP_BOUND_AS_TARGET: Self
pub const D2DERR_INSUFFICIENT_DEVICE_CAPABILITIES: Self
pub const D2DERR_INTERMEDIATE_TOO_LARGE: Self
pub const D2DERR_EFFECT_IS_NOT_REGISTERED: Self
pub const D2DERR_INVALID_PROPERTY: Self
pub const D2DERR_NO_SUBPROPERTIES: Self
pub const D2DERR_PRINT_JOB_CLOSED: Self
pub const D2DERR_PRINT_FORMAT_NOT_SUPPORTED: Self
pub const D2DERR_TOO_MANY_TRANSFORM_INPUTS: Self
pub const D2DERR_INVALID_GLYPH_IMAGE: Self
pub const DWRITE_E_FILEFORMAT: Self
pub const DWRITE_E_UNEXPECTED: Self
pub const DWRITE_E_NOFONT: Self
pub const DWRITE_E_FILENOTFOUND: Self
pub const DWRITE_E_FILEACCESS: Self
pub const DWRITE_E_FONTCOLLECTIONOBSOLETE: Self
pub const DWRITE_E_ALREADYREGISTERED: Self
pub const DWRITE_E_CACHEFORMAT: Self
pub const DWRITE_E_CACHEVERSION: Self
pub const DWRITE_E_UNSUPPORTEDOPERATION: Self
pub const DWRITE_E_TEXTRENDERERINCOMPATIBLE: Self
pub const DWRITE_E_FLOWDIRECTIONCONFLICTS: Self
pub const DWRITE_E_NOCOLOR: Self
pub const DWRITE_E_REMOTEFONT: Self
pub const DWRITE_E_DOWNLOADCANCELLED: Self
pub const DWRITE_E_DOWNLOADFAILED: Self
pub const DWRITE_E_TOOMANYDOWNLOADS: Self
pub const WINCODEC_ERR_WRONGSTATE: Self
pub const WINCODEC_ERR_VALUEOUTOFRANGE: Self
pub const WINCODEC_ERR_UNKNOWNIMAGEFORMAT: Self
pub const WINCODEC_ERR_UNSUPPORTEDVERSION: Self
pub const WINCODEC_ERR_NOTINITIALIZED: Self
pub const WINCODEC_ERR_ALREADYLOCKED: Self
pub const WINCODEC_ERR_PROPERTYNOTFOUND: Self
pub const WINCODEC_ERR_PROPERTYNOTSUPPORTED: Self
pub const WINCODEC_ERR_PROPERTYSIZE: Self
pub const WINCODEC_ERR_CODECPRESENT: Self
pub const WINCODEC_ERR_CODECNOTHUMBNAIL: Self
pub const WINCODEC_ERR_PALETTEUNAVAILABLE: Self
pub const WINCODEC_ERR_CODECTOOMANYSCANLINES: Self
pub const WINCODEC_ERR_INTERNALERROR: Self
pub const WINCODEC_ERR_SOURCERECTDOESNOTMATCHDIMENSIONS: Self
pub const WINCODEC_ERR_COMPONENTNOTFOUND: Self
pub const WINCODEC_ERR_IMAGESIZEOUTOFRANGE: Self
pub const WINCODEC_ERR_TOOMUCHMETADATA: Self
pub const WINCODEC_ERR_BADIMAGE: Self
pub const WINCODEC_ERR_BADHEADER: Self
pub const WINCODEC_ERR_FRAMEMISSING: Self
pub const WINCODEC_ERR_BADMETADATAHEADER: Self
pub const WINCODEC_ERR_BADSTREAMDATA: Self
pub const WINCODEC_ERR_STREAMWRITE: Self
pub const WINCODEC_ERR_STREAMREAD: Self
pub const WINCODEC_ERR_STREAMNOTAVAILABLE: Self
pub const WINCODEC_ERR_UNSUPPORTEDPIXELFORMAT: Self
pub const WINCODEC_ERR_UNSUPPORTEDOPERATION: Self
pub const WINCODEC_ERR_INVALIDREGISTRATION: Self
pub const WINCODEC_ERR_COMPONENTINITIALIZEFAILURE: Self
pub const WINCODEC_ERR_INSUFFICIENTBUFFER: Self
pub const WINCODEC_ERR_DUPLICATEMETADATAPRESENT: Self
pub const WINCODEC_ERR_PROPERTYUNEXPECTEDTYPE: Self
pub const WINCODEC_ERR_UNEXPECTEDSIZE: Self
pub const WINCODEC_ERR_INVALIDQUERYREQUEST: Self
pub const WINCODEC_ERR_UNEXPECTEDMETADATATYPE: Self
pub const WINCODEC_ERR_REQUESTONLYVALIDATMETADATAROOT: Self
pub const WINCODEC_ERR_INVALIDQUERYCHARACTER: Self
pub const WINCODEC_ERR_WIN32ERROR: Self
pub const WINCODEC_ERR_INVALIDPROGRESSIVELEVEL: Self
pub const WINCODEC_ERR_INVALIDJPEGSCANINDEX: Self
pub const MILERR_OBJECTBUSY: Self
pub const MILERR_INSUFFICIENTBUFFER: Self
pub const MILERR_WIN32ERROR: Self
pub const MILERR_SCANNER_FAILED: Self
pub const MILERR_SCREENACCESSDENIED: Self
pub const MILERR_DISPLAYSTATEINVALID: Self
pub const MILERR_NONINVERTIBLEMATRIX: Self
pub const MILERR_ZEROVECTOR: Self
pub const MILERR_TERMINATED: Self
pub const MILERR_BADNUMBER: Self
pub const MILERR_INTERNALERROR: Self
pub const MILERR_DISPLAYFORMATNOTSUPPORTED: Self
pub const MILERR_INVALIDCALL: Self
pub const MILERR_ALREADYLOCKED: Self
pub const MILERR_NOTLOCKED: Self
pub const MILERR_DEVICECANNOTRENDERTEXT: Self
pub const MILERR_GLYPHBITMAPMISSED: Self
pub const MILERR_MALFORMEDGLYPHCACHE: Self
pub const MILERR_GENERIC_IGNORE: Self
pub const MILERR_MALFORMED_GUIDELINE_DATA: Self
pub const MILERR_NO_HARDWARE_DEVICE: Self
pub const MILERR_NEED_RECREATE_AND_PRESENT: Self
pub const MILERR_ALREADY_INITIALIZED: Self
pub const MILERR_MISMATCHED_SIZE: Self
pub const MILERR_NO_REDIRECTION_SURFACE_AVAILABLE: Self
pub const MILERR_REMOTING_NOT_SUPPORTED: Self
pub const MILERR_QUEUED_PRESENT_NOT_SUPPORTED: Self
pub const MILERR_NOT_QUEUING_PRESENTS: Self
pub const MILERR_NO_REDIRECTION_SURFACE_RETRY_LATER: Self
pub const MILERR_TOOMANYSHADERELEMNTS: Self
pub const MILERR_MROW_READLOCK_FAILED: Self
pub const MILERR_MROW_UPDATE_FAILED: Self
pub const MILERR_SHADER_COMPILE_FAILED: Self
pub const MILERR_MAX_TEXTURE_SIZE_EXCEEDED: Self
pub const MILERR_QPC_TIME_WENT_BACKWARD: Self
pub const MILERR_DXGI_ENUMERATION_OUT_OF_SYNC: Self
pub const MILERR_ADAPTER_NOT_FOUND: Self
pub const MILERR_COLORSPACE_NOT_SUPPORTED: Self
pub const MILERR_PREFILTER_NOT_SUPPORTED: Self
pub const MILERR_DISPLAYID_ACCESS_DENIED: Self
pub const UCEERR_INVALIDPACKETHEADER: Self
pub const UCEERR_UNKNOWNPACKET: Self
pub const UCEERR_ILLEGALPACKET: Self
pub const UCEERR_MALFORMEDPACKET: Self
pub const UCEERR_ILLEGALHANDLE: Self
pub const UCEERR_HANDLELOOKUPFAILED: Self
pub const UCEERR_RENDERTHREADFAILURE: Self
pub const UCEERR_CTXSTACKFRSTTARGETNULL: Self
pub const UCEERR_CONNECTIONIDLOOKUPFAILED: Self
pub const UCEERR_BLOCKSFULL: Self
pub const UCEERR_MEMORYFAILURE: Self
pub const UCEERR_PACKETRECORDOUTOFRANGE: Self
pub const UCEERR_ILLEGALRECORDTYPE: Self
pub const UCEERR_OUTOFHANDLES: Self
pub const UCEERR_UNCHANGABLE_UPDATE_ATTEMPTED: Self
pub const UCEERR_NO_MULTIPLE_WORKER_THREADS: Self
pub const UCEERR_REMOTINGNOTSUPPORTED: Self
pub const UCEERR_MISSINGENDCOMMAND: Self
pub const UCEERR_MISSINGBEGINCOMMAND: Self
pub const UCEERR_CHANNELSYNCTIMEDOUT: Self
pub const UCEERR_CHANNELSYNCABANDONED: Self
pub const UCEERR_UNSUPPORTEDTRANSPORTVERSION: Self
pub const UCEERR_TRANSPORTUNAVAILABLE: Self
pub const UCEERR_FEEDBACK_UNSUPPORTED: Self
pub const UCEERR_COMMANDTRANSPORTDENIED: Self
pub const UCEERR_GRAPHICSSTREAMUNAVAILABLE: Self
pub const UCEERR_GRAPHICSSTREAMALREADYOPEN: Self
pub const UCEERR_TRANSPORTDISCONNECTED: Self
pub const UCEERR_TRANSPORTOVERLOADED: Self
pub const UCEERR_PARTITION_ZOMBIED: Self
pub const MILAVERR_NOCLOCK: Self
pub const MILAVERR_NOMEDIATYPE: Self
pub const MILAVERR_NOVIDEOMIXER: Self
pub const MILAVERR_NOVIDEOPRESENTER: Self
pub const MILAVERR_NOREADYFRAMES: Self
pub const MILAVERR_MODULENOTLOADED: Self
pub const MILAVERR_WMPFACTORYNOTREGISTERED: Self
pub const MILAVERR_INVALIDWMPVERSION: Self
pub const MILAVERR_INSUFFICIENTVIDEORESOURCES: Self
pub const MILAVERR_VIDEOACCELERATIONNOTAVAILABLE: Self
pub const MILAVERR_REQUESTEDTEXTURETOOBIG: Self
pub const MILAVERR_SEEKFAILED: Self
pub const MILAVERR_UNEXPECTEDWMPFAILURE: Self
pub const MILAVERR_MEDIAPLAYERCLOSED: Self
pub const MILAVERR_UNKNOWNHARDWAREERROR: Self
pub const MILEFFECTSERR_UNKNOWNPROPERTY: Self
pub const MILEFFECTSERR_EFFECTNOTPARTOFGROUP: Self
pub const MILEFFECTSERR_NOINPUTSOURCEATTACHED: Self
pub const MILEFFECTSERR_CONNECTORNOTCONNECTED: Self
pub const MILEFFECTSERR_CONNECTORNOTASSOCIATEDWITHEFFECT: Self
pub const MILEFFECTSERR_RESERVED: Self
pub const MILEFFECTSERR_CYCLEDETECTED: Self
pub const MILEFFECTSERR_EFFECTINMORETHANONEGRAPH: Self
pub const MILEFFECTSERR_EFFECTALREADYINAGRAPH: Self
pub const MILEFFECTSERR_EFFECTHASNOCHILDREN: Self
pub const MILEFFECTSERR_ALREADYATTACHEDTOLISTENER: Self
pub const MILEFFECTSERR_NOTAFFINETRANSFORM: Self
pub const MILEFFECTSERR_EMPTYBOUNDS: Self
pub const MILEFFECTSERR_OUTPUTSIZETOOLARGE: Self
pub const DWMERR_STATE_TRANSITION_FAILED: Self
pub const DWMERR_THEME_FAILED: Self
pub const DWMERR_CATASTROPHIC_FAILURE: Self
pub const DCOMPOSITION_ERROR_WINDOW_ALREADY_COMPOSED: Self
pub const DCOMPOSITION_ERROR_SURFACE_BEING_RENDERED: Self
pub const DCOMPOSITION_ERROR_SURFACE_NOT_BEING_RENDERED: Self
pub const ONL_E_INVALID_AUTHENTICATION_TARGET: Self
pub const ONL_E_ACCESS_DENIED_BY_TOU: Self
pub const ONL_E_INVALID_APPLICATION: Self
pub const ONL_E_PASSWORD_UPDATE_REQUIRED: Self
pub const ONL_E_ACCOUNT_UPDATE_REQUIRED: Self
pub const ONL_E_FORCESIGNIN: Self
pub const ONL_E_ACCOUNT_LOCKED: Self
pub const ONL_E_PARENTAL_CONSENT_REQUIRED: Self
pub const ONL_E_EMAIL_VERIFICATION_REQUIRED: Self
pub const ONL_E_ACCOUNT_SUSPENDED_COMPROIMISE: Self
pub const ONL_E_ACCOUNT_SUSPENDED_ABUSE: Self
pub const ONL_E_ACTION_REQUIRED: Self
pub const ONL_CONNECTION_COUNT_LIMIT: Self
pub const ONL_E_CONNECTED_ACCOUNT_CAN_NOT_SIGNOUT: Self
pub const ONL_E_USER_AUTHENTICATION_REQUIRED: Self
pub const ONL_E_REQUEST_THROTTLED: Self
pub const FA_E_MAX_PERSISTED_ITEMS_REACHED: Self
pub const FA_E_HOMEGROUP_NOT_AVAILABLE: Self
pub const E_MONITOR_RESOLUTION_TOO_LOW: Self
pub const E_ELEVATED_ACTIVATION_NOT_SUPPORTED: Self
pub const E_UAC_DISABLED: Self
pub const E_FULL_ADMIN_NOT_SUPPORTED: Self
pub const E_APPLICATION_NOT_REGISTERED: Self
pub const E_MULTIPLE_EXTENSIONS_FOR_APPLICATION: Self
pub const E_MULTIPLE_PACKAGES_FOR_FAMILY: Self
pub const E_APPLICATION_MANAGER_NOT_RUNNING: Self
pub const S_STORE_LAUNCHED_FOR_REMEDIATION: Self
pub const S_APPLICATION_ACTIVATION_ERROR_HANDLED_BY_DIALOG: Self
pub const E_APPLICATION_ACTIVATION_TIMED_OUT: Self
pub const E_APPLICATION_ACTIVATION_EXEC_FAILURE: Self
pub const E_APPLICATION_TEMPORARY_LICENSE_ERROR: Self
pub const E_APPLICATION_TRIAL_LICENSE_EXPIRED: Self
pub const E_SKYDRIVE_ROOT_TARGET_FILE_SYSTEM_NOT_SUPPORTED: Self
pub const E_SKYDRIVE_ROOT_TARGET_OVERLAP: Self
pub const E_SKYDRIVE_ROOT_TARGET_CANNOT_INDEX: Self
pub const E_SKYDRIVE_FILE_NOT_UPLOADED: Self
pub const E_SKYDRIVE_UPDATE_AVAILABILITY_FAIL: Self
pub const E_SKYDRIVE_ROOT_TARGET_VOLUME_ROOT_NOT_SUPPORTED: Self
pub const E_SYNCENGINE_FILE_SIZE_OVER_LIMIT: Self
pub const E_SYNCENGINE_FILE_SIZE_EXCEEDS_REMAINING_QUOTA: Self
pub const E_SYNCENGINE_UNSUPPORTED_FILE_NAME: Self
pub const E_SYNCENGINE_FOLDER_ITEM_COUNT_LIMIT_EXCEEDED: Self
pub const E_SYNCENGINE_FILE_SYNC_PARTNER_ERROR: Self
pub const E_SYNCENGINE_SYNC_PAUSED_BY_SERVICE: Self
pub const E_SYNCENGINE_FILE_IDENTIFIER_UNKNOWN: Self
pub const E_SYNCENGINE_SERVICE_AUTHENTICATION_FAILED: Self
pub const E_SYNCENGINE_UNKNOWN_SERVICE_ERROR: Self
pub const E_SYNCENGINE_SERVICE_RETURNED_UNEXPECTED_SIZE: Self
pub const E_SYNCENGINE_REQUEST_BLOCKED_BY_SERVICE: Self
pub const E_SYNCENGINE_REQUEST_BLOCKED_DUE_TO_CLIENT_ERROR: Self
pub const E_SYNCENGINE_FOLDER_INACCESSIBLE: Self
pub const E_SYNCENGINE_UNSUPPORTED_FOLDER_NAME: Self
pub const E_SYNCENGINE_UNSUPPORTED_MARKET: Self
pub const E_SYNCENGINE_PATH_LENGTH_LIMIT_EXCEEDED: Self
pub const E_SYNCENGINE_REMOTE_PATH_LENGTH_LIMIT_EXCEEDED: Self
pub const E_SYNCENGINE_CLIENT_UPDATE_NEEDED: Self
pub const E_SYNCENGINE_PROXY_AUTHENTICATION_REQUIRED: Self
pub const E_SYNCENGINE_STORAGE_SERVICE_PROVISIONING_FAILED: Self
pub const E_SYNCENGINE_UNSUPPORTED_REPARSE_POINT: Self
pub const E_SYNCENGINE_STORAGE_SERVICE_BLOCKED: Self
pub const E_SYNCENGINE_FOLDER_IN_REDIRECTION: Self
pub const EAS_E_POLICY_NOT_MANAGED_BY_OS: Self
pub const EAS_E_POLICY_COMPLIANT_WITH_ACTIONS: Self
pub const EAS_E_REQUESTED_POLICY_NOT_ENFORCEABLE: Self
pub const EAS_E_CURRENT_USER_HAS_BLANK_PASSWORD: Self
pub const EAS_E_REQUESTED_POLICY_PASSWORD_EXPIRATION_INCOMPATIBLE: Self
pub const EAS_E_USER_CANNOT_CHANGE_PASSWORD: Self
pub const EAS_E_ADMINS_HAVE_BLANK_PASSWORD: Self
pub const EAS_E_ADMINS_CANNOT_CHANGE_PASSWORD: Self
pub const EAS_E_LOCAL_CONTROLLED_USERS_CANNOT_CHANGE_PASSWORD: Self
pub const EAS_E_PASSWORD_POLICY_NOT_ENFORCEABLE_FOR_CONNECTED_ADMINS: Self
pub const EAS_E_CONNECTED_ADMINS_NEED_TO_CHANGE_PASSWORD: Self
pub const EAS_E_PASSWORD_POLICY_NOT_ENFORCEABLE_FOR_CURRENT_CONNECTED_USER: Self
pub const EAS_E_CURRENT_CONNECTED_USER_NEED_TO_CHANGE_PASSWORD: Self
pub const WEB_E_UNSUPPORTED_FORMAT: Self
pub const WEB_E_INVALID_XML: Self
pub const WEB_E_MISSING_REQUIRED_ELEMENT: Self
pub const WEB_E_MISSING_REQUIRED_ATTRIBUTE: Self
pub const WEB_E_UNEXPECTED_CONTENT: Self
pub const WEB_E_RESOURCE_TOO_LARGE: Self
pub const WEB_E_INVALID_JSON_STRING: Self
pub const WEB_E_INVALID_JSON_NUMBER: Self
pub const WEB_E_JSON_VALUE_NOT_FOUND: Self
pub const HTTP_E_STATUS_UNEXPECTED: Self
pub const HTTP_E_STATUS_UNEXPECTED_REDIRECTION: Self
pub const HTTP_E_STATUS_UNEXPECTED_CLIENT_ERROR: Self
pub const HTTP_E_STATUS_UNEXPECTED_SERVER_ERROR: Self
pub const HTTP_E_STATUS_AMBIGUOUS: Self
pub const HTTP_E_STATUS_MOVED: Self
pub const HTTP_E_STATUS_REDIRECT: Self
pub const HTTP_E_STATUS_REDIRECT_METHOD: Self
pub const HTTP_E_STATUS_NOT_MODIFIED: Self
pub const HTTP_E_STATUS_USE_PROXY: Self
pub const HTTP_E_STATUS_REDIRECT_KEEP_VERB: Self
pub const HTTP_E_STATUS_BAD_REQUEST: Self
pub const HTTP_E_STATUS_DENIED: Self
pub const HTTP_E_STATUS_PAYMENT_REQ: Self
pub const HTTP_E_STATUS_FORBIDDEN: Self
pub const HTTP_E_STATUS_NOT_FOUND: Self
pub const HTTP_E_STATUS_BAD_METHOD: Self
pub const HTTP_E_STATUS_NONE_ACCEPTABLE: Self
pub const HTTP_E_STATUS_PROXY_AUTH_REQ: Self
pub const HTTP_E_STATUS_REQUEST_TIMEOUT: Self
pub const HTTP_E_STATUS_CONFLICT: Self
pub const HTTP_E_STATUS_GONE: Self
pub const HTTP_E_STATUS_LENGTH_REQUIRED: Self
pub const HTTP_E_STATUS_PRECOND_FAILED: Self
pub const HTTP_E_STATUS_REQUEST_TOO_LARGE: Self
pub const HTTP_E_STATUS_URI_TOO_LONG: Self
pub const HTTP_E_STATUS_UNSUPPORTED_MEDIA: Self
pub const HTTP_E_STATUS_RANGE_NOT_SATISFIABLE: Self
pub const HTTP_E_STATUS_EXPECTATION_FAILED: Self
pub const HTTP_E_STATUS_SERVER_ERROR: Self
pub const HTTP_E_STATUS_NOT_SUPPORTED: Self
pub const HTTP_E_STATUS_BAD_GATEWAY: Self
pub const HTTP_E_STATUS_SERVICE_UNAVAIL: Self
pub const HTTP_E_STATUS_GATEWAY_TIMEOUT: Self
pub const HTTP_E_STATUS_VERSION_NOT_SUP: Self
pub const E_INVALID_PROTOCOL_OPERATION: Self
pub const E_INVALID_PROTOCOL_FORMAT: Self
pub const E_PROTOCOL_EXTENSIONS_NOT_SUPPORTED: Self
pub const E_SUBPROTOCOL_NOT_SUPPORTED: Self
pub const E_PROTOCOL_VERSION_NOT_SUPPORTED: Self
pub const INPUT_E_OUT_OF_ORDER: Self
pub const INPUT_E_REENTRANCY: Self
pub const INPUT_E_MULTIMODAL: Self
pub const INPUT_E_PACKET: Self
pub const INPUT_E_FRAME: Self
pub const INPUT_E_HISTORY: Self
pub const INPUT_E_DEVICE_INFO: Self
pub const INPUT_E_TRANSFORM: Self
pub const INPUT_E_DEVICE_PROPERTY: Self
pub const INET_E_INVALID_URL: Self
pub const INET_E_NO_SESSION: Self
pub const INET_E_CANNOT_CONNECT: Self
pub const INET_E_RESOURCE_NOT_FOUND: Self
pub const INET_E_OBJECT_NOT_FOUND: Self
pub const INET_E_DATA_NOT_AVAILABLE: Self
pub const INET_E_DOWNLOAD_FAILURE: Self
pub const INET_E_AUTHENTICATION_REQUIRED: Self
pub const INET_E_NO_VALID_MEDIA: Self
pub const INET_E_CONNECTION_TIMEOUT: Self
pub const INET_E_INVALID_REQUEST: Self
pub const INET_E_UNKNOWN_PROTOCOL: Self
pub const INET_E_SECURITY_PROBLEM: Self
pub const INET_E_CANNOT_LOAD_DATA: Self
pub const INET_E_CANNOT_INSTANTIATE_OBJECT: Self
pub const INET_E_INVALID_CERTIFICATE: Self
pub const INET_E_REDIRECT_FAILED: Self
pub const INET_E_REDIRECT_TO_DIR: Self
pub const ERROR_DBG_CREATE_PROCESS_FAILURE_LOCKDOWN: Self
pub const ERROR_DBG_ATTACH_PROCESS_FAILURE_LOCKDOWN: Self
pub const ERROR_DBG_CONNECT_SERVER_FAILURE_LOCKDOWN: Self
pub const ERROR_DBG_START_SERVER_FAILURE_LOCKDOWN: Self
pub const ERROR_IO_PREEMPTED: Self
pub const JSCRIPT_E_CANTEXECUTE: Self
pub const WEP_E_NOT_PROVISIONED_ON_ALL_VOLUMES: Self
pub const WEP_E_FIXED_DATA_NOT_SUPPORTED: Self
pub const WEP_E_HARDWARE_NOT_COMPLIANT: Self
pub const WEP_E_LOCK_NOT_CONFIGURED: Self
pub const WEP_E_PROTECTION_SUSPENDED: Self
pub const WEP_E_NO_LICENSE: Self
pub const WEP_E_OS_NOT_PROTECTED: Self
pub const WEP_E_UNEXPECTED_FAIL: Self
pub const WEP_E_BUFFER_TOO_LARGE: Self
pub const ERROR_SVHDX_ERROR_STORED: Self
pub const ERROR_SVHDX_ERROR_NOT_AVAILABLE: Self
pub const ERROR_SVHDX_UNIT_ATTENTION_AVAILABLE: Self
pub const ERROR_SVHDX_UNIT_ATTENTION_CAPACITY_DATA_CHANGED: Self
pub const ERROR_SVHDX_UNIT_ATTENTION_RESERVATIONS_PREEMPTED: Self
pub const ERROR_SVHDX_UNIT_ATTENTION_RESERVATIONS_RELEASED: Self
pub const ERROR_SVHDX_UNIT_ATTENTION_REGISTRATIONS_PREEMPTED: Self
pub const ERROR_SVHDX_UNIT_ATTENTION_OPERATING_DEFINITION_CHANGED: Self
pub const ERROR_SVHDX_RESERVATION_CONFLICT: Self
pub const ERROR_SVHDX_WRONG_FILE_TYPE: Self
pub const ERROR_SVHDX_VERSION_MISMATCH: Self
pub const ERROR_VHD_SHARED: Self
pub const ERROR_SVHDX_NO_INITIATOR: Self
pub const ERROR_VHDSET_BACKING_STORAGE_NOT_FOUND: Self
pub const ERROR_SMB_NO_PREAUTH_INTEGRITY_HASH_OVERLAP: Self
pub const ERROR_SMB_BAD_CLUSTER_DIALECT: Self
pub const WININET_E_OUT_OF_HANDLES: Self
pub const WININET_E_TIMEOUT: Self
pub const WININET_E_EXTENDED_ERROR: Self
pub const WININET_E_INTERNAL_ERROR: Self
pub const WININET_E_INVALID_URL: Self
pub const WININET_E_UNRECOGNIZED_SCHEME: Self
pub const WININET_E_NAME_NOT_RESOLVED: Self
pub const WININET_E_PROTOCOL_NOT_FOUND: Self
pub const WININET_E_INVALID_OPTION: Self
pub const WININET_E_BAD_OPTION_LENGTH: Self
pub const WININET_E_OPTION_NOT_SETTABLE: Self
pub const WININET_E_SHUTDOWN: Self
pub const WININET_E_INCORRECT_USER_NAME: Self
pub const WININET_E_INCORRECT_PASSWORD: Self
pub const WININET_E_LOGIN_FAILURE: Self
pub const WININET_E_INVALID_OPERATION: Self
pub const WININET_E_OPERATION_CANCELLED: Self
pub const WININET_E_INCORRECT_HANDLE_TYPE: Self
pub const WININET_E_INCORRECT_HANDLE_STATE: Self
pub const WININET_E_NOT_PROXY_REQUEST: Self
pub const WININET_E_REGISTRY_VALUE_NOT_FOUND: Self
pub const WININET_E_BAD_REGISTRY_PARAMETER: Self
pub const WININET_E_NO_DIRECT_ACCESS: Self
pub const WININET_E_NO_CONTEXT: Self
pub const WININET_E_NO_CALLBACK: Self
pub const WININET_E_REQUEST_PENDING: Self
pub const WININET_E_INCORRECT_FORMAT: Self
pub const WININET_E_ITEM_NOT_FOUND: Self
pub const WININET_E_CANNOT_CONNECT: Self
pub const WININET_E_CONNECTION_ABORTED: Self
pub const WININET_E_CONNECTION_RESET: Self
pub const WININET_E_FORCE_RETRY: Self
pub const WININET_E_INVALID_PROXY_REQUEST: Self
pub const WININET_E_NEED_UI: Self
pub const WININET_E_HANDLE_EXISTS: Self
pub const WININET_E_SEC_CERT_DATE_INVALID: Self
pub const WININET_E_SEC_CERT_CN_INVALID: Self
pub const WININET_E_HTTP_TO_HTTPS_ON_REDIR: Self
pub const WININET_E_HTTPS_TO_HTTP_ON_REDIR: Self
pub const WININET_E_MIXED_SECURITY: Self
pub const WININET_E_CHG_POST_IS_NON_SECURE: Self
pub const WININET_E_POST_IS_NON_SECURE: Self
pub const WININET_E_CLIENT_AUTH_CERT_NEEDED: Self
pub const WININET_E_INVALID_CA: Self
pub const WININET_E_CLIENT_AUTH_NOT_SETUP: Self
pub const WININET_E_ASYNC_THREAD_FAILED: Self
pub const WININET_E_REDIRECT_SCHEME_CHANGE: Self
pub const WININET_E_DIALOG_PENDING: Self
pub const WININET_E_RETRY_DIALOG: Self
pub const WININET_E_NO_NEW_CONTAINERS: Self
pub const WININET_E_HTTPS_HTTP_SUBMIT_REDIR: Self
pub const WININET_E_SEC_CERT_ERRORS: Self
pub const WININET_E_SEC_CERT_REV_FAILED: Self
pub const WININET_E_HEADER_NOT_FOUND: Self
pub const WININET_E_DOWNLEVEL_SERVER: Self
pub const WININET_E_INVALID_SERVER_RESPONSE: Self
pub const WININET_E_INVALID_HEADER: Self
pub const WININET_E_INVALID_QUERY_REQUEST: Self
pub const WININET_E_HEADER_ALREADY_EXISTS: Self
pub const WININET_E_REDIRECT_FAILED: Self
pub const WININET_E_SECURITY_CHANNEL_ERROR: Self
pub const WININET_E_UNABLE_TO_CACHE_FILE: Self
pub const WININET_E_TCPIP_NOT_INSTALLED: Self
pub const WININET_E_DISCONNECTED: Self
pub const WININET_E_SERVER_UNREACHABLE: Self
pub const WININET_E_PROXY_SERVER_UNREACHABLE: Self
pub const WININET_E_BAD_AUTO_PROXY_SCRIPT: Self
pub const WININET_E_UNABLE_TO_DOWNLOAD_SCRIPT: Self
pub const WININET_E_SEC_INVALID_CERT: Self
pub const WININET_E_SEC_CERT_REVOKED: Self
pub const WININET_E_FAILED_DUETOSECURITYCHECK: Self
pub const WININET_E_NOT_INITIALIZED: Self
pub const WININET_E_LOGIN_FAILURE_DISPLAY_ENTITY_BODY: Self
pub const WININET_E_DECODING_FAILED: Self
pub const WININET_E_NOT_REDIRECTED: Self
pub const WININET_E_COOKIE_NEEDS_CONFIRMATION: Self
pub const WININET_E_COOKIE_DECLINED: Self
pub const WININET_E_REDIRECT_NEEDS_CONFIRMATION: Self
pub const SQLITE_E_ERROR: Self
pub const SQLITE_E_INTERNAL: Self
pub const SQLITE_E_PERM: Self
pub const SQLITE_E_ABORT: Self
pub const SQLITE_E_BUSY: Self
pub const SQLITE_E_LOCKED: Self
pub const SQLITE_E_NOMEM: Self
pub const SQLITE_E_READONLY: Self
pub const SQLITE_E_INTERRUPT: Self
pub const SQLITE_E_IOERR: Self
pub const SQLITE_E_CORRUPT: Self
pub const SQLITE_E_NOTFOUND: Self
pub const SQLITE_E_FULL: Self
pub const SQLITE_E_CANTOPEN: Self
pub const SQLITE_E_PROTOCOL: Self
pub const SQLITE_E_EMPTY: Self
pub const SQLITE_E_SCHEMA: Self
pub const SQLITE_E_TOOBIG: Self
pub const SQLITE_E_CONSTRAINT: Self
pub const SQLITE_E_MISMATCH: Self
pub const SQLITE_E_MISUSE: Self
pub const SQLITE_E_NOLFS: Self
pub const SQLITE_E_AUTH: Self
pub const SQLITE_E_FORMAT: Self
pub const SQLITE_E_RANGE: Self
pub const SQLITE_E_NOTADB: Self
pub const SQLITE_E_NOTICE: Self
pub const SQLITE_E_WARNING: Self
pub const SQLITE_E_ROW: Self
pub const SQLITE_E_DONE: Self
pub const SQLITE_E_IOERR_READ: Self
pub const SQLITE_E_IOERR_SHORT_READ: Self
pub const SQLITE_E_IOERR_WRITE: Self
pub const SQLITE_E_IOERR_FSYNC: Self
pub const SQLITE_E_IOERR_DIR_FSYNC: Self
pub const SQLITE_E_IOERR_TRUNCATE: Self
pub const SQLITE_E_IOERR_FSTAT: Self
pub const SQLITE_E_IOERR_UNLOCK: Self
pub const SQLITE_E_IOERR_RDLOCK: Self
pub const SQLITE_E_IOERR_DELETE: Self
pub const SQLITE_E_IOERR_BLOCKED: Self
pub const SQLITE_E_IOERR_NOMEM: Self
pub const SQLITE_E_IOERR_ACCESS: Self
pub const SQLITE_E_IOERR_CHECKRESERVEDLOCK: Self
pub const SQLITE_E_IOERR_LOCK: Self
pub const SQLITE_E_IOERR_CLOSE: Self
pub const SQLITE_E_IOERR_DIR_CLOSE: Self
pub const SQLITE_E_IOERR_SHMOPEN: Self
pub const SQLITE_E_IOERR_SHMSIZE: Self
pub const SQLITE_E_IOERR_SHMLOCK: Self
pub const SQLITE_E_IOERR_SHMMAP: Self
pub const SQLITE_E_IOERR_SEEK: Self
pub const SQLITE_E_IOERR_DELETE_NOENT: Self
pub const SQLITE_E_IOERR_MMAP: Self
pub const SQLITE_E_IOERR_GETTEMPPATH: Self
pub const SQLITE_E_IOERR_CONVPATH: Self
pub const SQLITE_E_IOERR_VNODE: Self
pub const SQLITE_E_IOERR_AUTH: Self
pub const SQLITE_E_LOCKED_SHAREDCACHE: Self
pub const SQLITE_E_BUSY_RECOVERY: Self
pub const SQLITE_E_BUSY_SNAPSHOT: Self
pub const SQLITE_E_CANTOPEN_NOTEMPDIR: Self
pub const SQLITE_E_CANTOPEN_ISDIR: Self
pub const SQLITE_E_CANTOPEN_FULLPATH: Self
pub const SQLITE_E_CANTOPEN_CONVPATH: Self
pub const SQLITE_E_CORRUPT_VTAB: Self
pub const SQLITE_E_READONLY_RECOVERY: Self
pub const SQLITE_E_READONLY_CANTLOCK: Self
pub const SQLITE_E_READONLY_ROLLBACK: Self
pub const SQLITE_E_READONLY_DBMOVED: Self
pub const SQLITE_E_ABORT_ROLLBACK: Self
pub const SQLITE_E_CONSTRAINT_CHECK: Self
pub const SQLITE_E_CONSTRAINT_COMMITHOOK: Self
pub const SQLITE_E_CONSTRAINT_FOREIGNKEY: Self
pub const SQLITE_E_CONSTRAINT_FUNCTION: Self
pub const SQLITE_E_CONSTRAINT_NOTNULL: Self
pub const SQLITE_E_CONSTRAINT_PRIMARYKEY: Self
pub const SQLITE_E_CONSTRAINT_TRIGGER: Self
pub const SQLITE_E_CONSTRAINT_UNIQUE: Self
pub const SQLITE_E_CONSTRAINT_VTAB: Self
pub const SQLITE_E_CONSTRAINT_ROWID: Self
pub const SQLITE_E_NOTICE_RECOVER_WAL: Self
pub const SQLITE_E_NOTICE_RECOVER_ROLLBACK: Self
pub const SQLITE_E_WARNING_AUTOINDEX: Self
pub const UTC_E_TOGGLE_TRACE_STARTED: Self
pub const UTC_E_ALTERNATIVE_TRACE_CANNOT_PREEMPT: Self
pub const UTC_E_AOT_NOT_RUNNING: Self
pub const UTC_E_SCRIPT_TYPE_INVALID: Self
pub const UTC_E_SCENARIODEF_NOT_FOUND: Self
pub const UTC_E_TRACEPROFILE_NOT_FOUND: Self
pub const UTC_E_FORWARDER_ALREADY_ENABLED: Self
pub const UTC_E_FORWARDER_ALREADY_DISABLED: Self
pub const UTC_E_EVENTLOG_ENTRY_MALFORMED: Self
pub const UTC_E_DIAGRULES_SCHEMAVERSION_MISMATCH: Self
pub const UTC_E_SCRIPT_TERMINATED: Self
pub const UTC_E_INVALID_CUSTOM_FILTER: Self
pub const UTC_E_TRACE_NOT_RUNNING: Self
pub const UTC_E_REESCALATED_TOO_QUICKLY: Self
pub const UTC_E_ESCALATION_ALREADY_RUNNING: Self
pub const UTC_E_PERFTRACK_ALREADY_TRACING: Self
pub const UTC_E_REACHED_MAX_ESCALATIONS: Self
pub const UTC_E_FORWARDER_PRODUCER_MISMATCH: Self
pub const UTC_E_INTENTIONAL_SCRIPT_FAILURE: Self
pub const UTC_E_SQM_INIT_FAILED: Self
pub const UTC_E_NO_WER_LOGGER_SUPPORTED: Self
pub const UTC_E_TRACERS_DONT_EXIST: Self
pub const UTC_E_WINRT_INIT_FAILED: Self
pub const UTC_E_SCENARIODEF_SCHEMAVERSION_MISMATCH: Self
pub const UTC_E_INVALID_FILTER: Self
pub const UTC_E_EXE_TERMINATED: Self
pub const UTC_E_ESCALATION_NOT_AUTHORIZED: Self
pub const UTC_E_SETUP_NOT_AUTHORIZED: Self
pub const UTC_E_CHILD_PROCESS_FAILED: Self
pub const UTC_E_COMMAND_LINE_NOT_AUTHORIZED: Self
pub const UTC_E_CANNOT_LOAD_SCENARIO_EDITOR_XML: Self
pub const UTC_E_ESCALATION_TIMED_OUT: Self
pub const UTC_E_SETUP_TIMED_OUT: Self
pub const UTC_E_TRIGGER_MISMATCH: Self
pub const UTC_E_TRIGGER_NOT_FOUND: Self
pub const UTC_E_SIF_NOT_SUPPORTED: Self
pub const UTC_E_DELAY_TERMINATED: Self
pub const UTC_E_DEVICE_TICKET_ERROR: Self
pub const UTC_E_TRACE_BUFFER_LIMIT_EXCEEDED: Self
pub const UTC_E_API_RESULT_UNAVAILABLE: Self
pub const UTC_E_RPC_TIMEOUT: Self
pub const UTC_E_RPC_WAIT_FAILED: Self
pub const UTC_E_API_BUSY: Self
pub const UTC_E_TRACE_MIN_DURATION_REQUIREMENT_NOT_MET: Self
pub const UTC_E_EXCLUSIVITY_NOT_AVAILABLE: Self
pub const UTC_E_GETFILE_FILE_PATH_NOT_APPROVED: Self
pub const UTC_E_ESCALATION_DIRECTORY_ALREADY_EXISTS: Self
pub const UTC_E_TIME_TRIGGER_ON_START_INVALID: Self
pub const UTC_E_TIME_TRIGGER_ONLY_VALID_ON_SINGLE_TRANSITION: Self
pub const UTC_E_TIME_TRIGGER_INVALID_TIME_RANGE: Self
pub const UTC_E_MULTIPLE_TIME_TRIGGER_ON_SINGLE_STATE: Self
pub const UTC_E_BINARY_MISSING: Self
pub const UTC_E_NETWORK_CAPTURE_NOT_ALLOWED: Self
pub const UTC_E_FAILED_TO_RESOLVE_CONTAINER_ID: Self
pub const UTC_E_UNABLE_TO_RESOLVE_SESSION: Self
pub const UTC_E_THROTTLED: Self
pub const UTC_E_UNAPPROVED_SCRIPT: Self
pub const UTC_E_SCRIPT_MISSING: Self
pub const UTC_E_SCENARIO_THROTTLED: Self
pub const UTC_E_API_NOT_SUPPORTED: Self
pub const UTC_E_GETFILE_EXTERNAL_PATH_NOT_APPROVED: Self
pub const UTC_E_TRY_GET_SCENARIO_TIMEOUT_EXCEEDED: Self
pub const UTC_E_CERT_REV_FAILED: Self
pub const UTC_E_FAILED_TO_START_NDISCAP: Self
pub const UTC_E_KERNELDUMP_LIMIT_REACHED: Self
pub const UTC_E_MISSING_AGGREGATE_EVENT_TAG: Self
pub const UTC_E_INVALID_AGGREGATION_STRUCT: Self
pub const UTC_E_ACTION_NOT_SUPPORTED_IN_DESTINATION: Self
pub const UTC_E_FILTER_MISSING_ATTRIBUTE: Self
pub const UTC_E_FILTER_INVALID_TYPE: Self
pub const UTC_E_FILTER_VARIABLE_NOT_FOUND: Self
pub const UTC_E_FILTER_FUNCTION_RESTRICTED: Self
pub const UTC_E_FILTER_VERSION_MISMATCH: Self
pub const UTC_E_FILTER_INVALID_FUNCTION: Self
pub const UTC_E_FILTER_INVALID_FUNCTION_PARAMS: Self
pub const UTC_E_FILTER_INVALID_COMMAND: Self
pub const UTC_E_FILTER_ILLEGAL_EVAL: Self
pub const UTC_E_TTTRACER_RETURNED_ERROR: Self
pub const UTC_E_AGENT_DIAGNOSTICS_TOO_LARGE: Self
pub const UTC_E_FAILED_TO_RECEIVE_AGENT_DIAGNOSTICS: Self
pub const UTC_E_SCENARIO_HAS_NO_ACTIONS: Self
pub const UTC_E_TTTRACER_STORAGE_FULL: Self
pub const UTC_E_INSUFFICIENT_SPACE_TO_START_TRACE: Self
pub const UTC_E_ESCALATION_CANCELLED_AT_SHUTDOWN: Self
pub const UTC_E_GETFILEINFOACTION_FILE_NOT_APPROVED: Self
pub const UTC_E_SETREGKEYACTION_TYPE_NOT_APPROVED: Self
pub const WINML_ERR_INVALID_DEVICE: Self
pub const WINML_ERR_INVALID_BINDING: Self
pub const WINML_ERR_VALUE_NOTFOUND: Self
pub const WINML_ERR_SIZE_MISMATCH: Self
Trait Implementations§
Source§impl Error for HRESULT
impl Error for HRESULT
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
Source§impl FormattedError for HRESULT
impl FormattedError for HRESULT
Source§fn FormatMessage(self) -> String
fn FormatMessage(self) -> String
kernel
only.FormatMessage
.
function.