summaryrefslogtreecommitdiffstats
path: root/third_party/rust/winapi-0.2.8/src/restrictederrorinfo.rs
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/rust/winapi-0.2.8/src/restrictederrorinfo.rs')
-rw-r--r--third_party/rust/winapi-0.2.8/src/restrictederrorinfo.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/third_party/rust/winapi-0.2.8/src/restrictederrorinfo.rs b/third_party/rust/winapi-0.2.8/src/restrictederrorinfo.rs
new file mode 100644
index 0000000000..94fbb77bb0
--- /dev/null
+++ b/third_party/rust/winapi-0.2.8/src/restrictederrorinfo.rs
@@ -0,0 +1,9 @@
+RIDL!(
+interface IRestrictedErrorInfo(IRestrictedErrorInfoVtbl): IUnknown(IUnknownVtbl) {
+ fn GetErrorDetails(
+ &mut self, description: *mut ::BSTR, error: *mut ::HRESULT,
+ restrictedDescription: *mut ::BSTR, capabilitySid: *mut ::BSTR
+ ) -> ::HRESULT,
+ fn GetReference(&mut self, reference: *mut ::BSTR) -> ::HRESULT
+}
+);