1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
// Licensed under the Apache License, Version 2.0
// <LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your option.
// All files in the project carrying such notice may not be copied, modified, or distributed
// except according to those terms.
use shared::basetsd::{UINT32, UINT_PTR};
use shared::minwindef::{BOOL, BYTE, UINT, USHORT};
use um::restrictederrorinfo::IRestrictedErrorInfo;
use um::unknwnbase::IUnknown;
use um::winnt::{HRESULT, PCWSTR, PVOID, VOID};
use winrt::hstring::HSTRING;
ENUM!{enum RO_ERROR_REPORTING_FLAGS {
RO_ERROR_REPORTING_NONE = 0x00000000,
RO_ERROR_REPORTING_SUPPRESSEXCEPTIONS = 0x00000001,
RO_ERROR_REPORTING_FORCEEXCEPTIONS = 0x00000002,
RO_ERROR_REPORTING_USESETERRORINFO = 0x00000004,
RO_ERROR_REPORTING_SUPPRESSSETERRORINFO = 0x00000008,
}}
extern "system" {
pub fn RoGetErrorReportingFlags(
pflags: *mut UINT32,
) -> HRESULT;
pub fn RoSetErrorReportingFlags(
flags: UINT32,
) -> HRESULT;
pub fn RoResolveRestrictedErrorInfoReference(
reference: PCWSTR,
ppRestrictedErrorInfo: *mut *mut IRestrictedErrorInfo ,
) -> HRESULT;
pub fn SetRestrictedErrorInfo(
pRestrictedErrorInfo: *const IRestrictedErrorInfo,
) -> HRESULT;
pub fn GetRestrictedErrorInfo(
ppRestrictedErrorInfo: *mut *mut IRestrictedErrorInfo,
) -> HRESULT;
pub fn RoOriginateErrorW(
error: HRESULT,
cchMax: UINT,
message: PCWSTR,
) -> BOOL;
pub fn RoOriginateError(
error: HRESULT,
message: HSTRING,
) -> BOOL;
pub fn RoTransformErrorW(
oldError: HRESULT,
newError: HRESULT,
cchMax: UINT,
message: PCWSTR,
) -> BOOL;
pub fn RoTransformError(
oldError: HRESULT,
newError: HRESULT,
message: HSTRING,
) -> BOOL;
pub fn RoCaptureErrorContext(
hr: HRESULT,
) -> HRESULT;
pub fn RoFailFastWithErrorContext(
hrError: HRESULT,
);
pub fn RoOriginateLanguageException(
error: HRESULT,
message: HSTRING,
languageException: *const IUnknown,
) -> BOOL;
pub fn RoClearError();
pub fn RoReportUnhandledError(
pRestrictedErrorInfo: *const IRestrictedErrorInfo,
) -> HRESULT;
}
FN!{stdcall PINSPECT_MEMORY_CALLBACK(
*const VOID,
UINT_PTR,
UINT32,
*mut BYTE,
) -> HRESULT}
extern "system" {
pub fn RoInspectThreadErrorInfo(
targetTebAddress: UINT_PTR,
machine: USHORT,
readMemoryCallback: PINSPECT_MEMORY_CALLBACK,
context: PVOID,
targetErrorInfoAddress: *mut UINT_PTR,
) -> HRESULT;
pub fn RoInspectCapturedStackBackTrace(
targetErrorInfoAddress: UINT_PTR,
machine: USHORT,
readMemoryCallback: PINSPECT_MEMORY_CALLBACK,
context: PVOID,
frameCount: *mut UINT32,
targetBackTraceAddress: *mut UINT_PTR,
) -> HRESULT;
pub fn RoGetMatchingRestrictedErrorInfo(
hrIn: HRESULT,
ppRestrictedErrorInfo: *mut *mut IRestrictedErrorInfo,
) -> HRESULT;
pub fn RoReportFailedDelegate(
punkDelegate: *const IUnknown,
pRestrictedErrorInfo: *const IRestrictedErrorInfo,
) -> HRESULT;
pub fn IsErrorPropagationEnabled() -> BOOL;
}
|