]> git.proxmox.com Git - cargo.git/blob - vendor/winapi-0.3.3/src/um/urlmon.rs
New upstream version 0.24.0
[cargo.git] / vendor / winapi-0.3.3 / src / um / urlmon.rs
1 // Copyright © 2017 winapi-rs developers
2 // Licensed under the Apache License, Version 2.0
3 // <LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
4 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your option.
5 // All files in the project carrying such notice may not be copied, modified, or distributed
6 // except according to those terms.
7 //! URL Moniker interfaces
8 use shared::minwindef::DWORD;
9 use um::unknwnbase::{IUnknown, IUnknownVtbl};
10 use um::winnt::{HRESULT, LPCWSTR};
11 RIDL!(#[uuid(0x79eac9ee, 0xbaf9, 0x11ce, 0x8c, 0x82, 0x00, 0xaa, 0x00, 0x4b, 0xa9, 0x0b)]
12 interface IInternetSecurityManager(IInternetSecurityManagerVtbl): IUnknown(IUnknownVtbl) {
13 fn SetSecuritySite() -> HRESULT,
14 fn GetSecuritySite() -> HRESULT,
15 fn MapUrlToZone(
16 pwszUrl: LPCWSTR,
17 pdwZone: *mut DWORD,
18 dwFlags: DWORD,
19 ) -> HRESULT,
20 // TODO: the rest
21 });
22 // TODO: the rest