winapi_ui_automation/winrt/activation.rs
1// Licensed under the Apache License, Version 2.0
2// <LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
3// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your option.
4// All files in the project carrying such notice may not be copied, modified, or distributed
5// except according to those terms.
6use um::winnt::HRESULT;
7use winrt::inspectable::{IInspectable, IInspectableVtbl};
8RIDL!{#[uuid(0x00000035, 0x0000, 0x0000, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x46)]
9interface IActivationFactory(IActivationFactoryVtbl): IInspectable(IInspectableVtbl) {
10 fn ActivateInstance(
11 instance: *mut *mut IInspectable,
12 ) -> HRESULT,
13}}