summaryrefslogtreecommitdiffstats
path: root/third_party/rust/winapi-0.2.8/src/restrictederrorinfo.rs
blob: 94fbb77bb0c4537488751afb349ebb36e9ab51fa (plain)
1
2
3
4
5
6
7
8
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
}
);