winapi_ui_automation/um/
urlmon.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.
6//! URL Moniker interfaces
7use shared::minwindef::DWORD;
8use um::unknwnbase::{IUnknown, IUnknownVtbl};
9use um::winnt::{HRESULT, LPCWSTR};
10RIDL!{#[uuid(0x79eac9ee, 0xbaf9, 0x11ce, 0x8c, 0x82, 0x00, 0xaa, 0x00, 0x4b, 0xa9, 0x0b)]
11interface IInternetSecurityManager(IInternetSecurityManagerVtbl): IUnknown(IUnknownVtbl) {
12    fn SetSecuritySite() -> HRESULT,
13    fn GetSecuritySite() -> HRESULT,
14    fn MapUrlToZone(
15        pwszUrl: LPCWSTR,
16        pdwZone: *mut DWORD,
17        dwFlags: DWORD,
18    ) -> HRESULT,
19    // TODO: the rest
20}}
21// TODO: the rest