winapi_ui_automation/um/
bits2_5.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 shared::minwindef::ULONG;
7use shared::rpcndr::byte;
8use um::unknwnbase::{IUnknown, IUnknownVtbl};
9use um::winnt::{HRESULT, LPCWSTR, LPWSTR};
10ENUM!{enum BG_CERT_STORE_LOCATION {
11    BG_CERT_STORE_LOCATION_CURRENT_USER = 0,
12    BG_CERT_STORE_LOCATION_LOCAL_MACHINE = BG_CERT_STORE_LOCATION_CURRENT_USER + 1,
13    BG_CERT_STORE_LOCATION_CURRENT_SERVICE = BG_CERT_STORE_LOCATION_LOCAL_MACHINE + 1,
14    BG_CERT_STORE_LOCATION_SERVICES = BG_CERT_STORE_LOCATION_CURRENT_SERVICE + 1,
15    BG_CERT_STORE_LOCATION_USERS = BG_CERT_STORE_LOCATION_SERVICES + 1,
16    BG_CERT_STORE_LOCATION_CURRENT_USER_GROUP_POLICY = BG_CERT_STORE_LOCATION_USERS + 1,
17    BG_CERT_STORE_LOCATION_LOCAL_MACHINE_GROUP_POLICY
18        = BG_CERT_STORE_LOCATION_CURRENT_USER_GROUP_POLICY + 1,
19    BG_CERT_STORE_LOCATION_LOCAL_MACHINE_ENTERPRISE
20        = BG_CERT_STORE_LOCATION_LOCAL_MACHINE_GROUP_POLICY + 1,
21}}
22RIDL!{#[uuid(0xf1bd1079, 0x9f01, 0x4bdc, 0x80, 0x36, 0xf0, 0x9b, 0x70, 0x09, 0x50, 0x66)]
23interface IBackgroundCopyJobHttpOptions(IBackgroundCopyJobHttpOptionsVtbl):
24    IUnknown(IUnknownVtbl) {
25    fn SetClientCertificateByID(
26        StoreLocation: BG_CERT_STORE_LOCATION,
27        StoreName: LPCWSTR,
28        pCertHashBlob: *mut byte,
29    ) -> HRESULT,
30    fn SetClientCertificateByName(
31        StoreLocation: BG_CERT_STORE_LOCATION,
32        StoreName: LPCWSTR,
33        SubjectName: LPCWSTR,
34    ) -> HRESULT,
35    fn RemoveClientCertificate() -> HRESULT,
36    fn GetClientCertificate(
37        pStoreLocation: *mut BG_CERT_STORE_LOCATION,
38        pStoreName: *mut LPWSTR,
39        ppCertHashBlob: *mut *mut byte,
40        pSubjectName: *mut LPWSTR,
41    ) -> HRESULT,
42    fn SetCustomHeaders(
43        RequestHeaders: LPCWSTR,
44    ) -> HRESULT,
45    fn GetCustomHeaders(
46        pRequestHeaders: *mut LPWSTR,
47    ) -> HRESULT,
48    fn SetSecurityFlags(
49        Flags: ULONG,
50    ) -> HRESULT,
51    fn GetSecurityFlags(
52        pFlags: *mut ULONG,
53    ) -> HRESULT,
54}}
55pub const BG_SSL_ENABLE_CRL_CHECK: ULONG = 0x0001;
56pub const BG_SSL_IGNORE_CERT_CN_INVALID: ULONG = 0x0002;
57pub const BG_SSL_IGNORE_CERT_DATE_INVALID: ULONG = 0x0004;
58pub const BG_SSL_IGNORE_UNKNOWN_CA: ULONG = 0x0008;
59pub const BG_SSL_IGNORE_CERT_WRONG_USAGE: ULONG = 0x0010;
60pub const BG_HTTP_REDIRECT_POLICY_MASK: ULONG = 0x0700;
61pub const BG_HTTP_REDIRECT_POLICY_ALLOW_SILENT: ULONG = 0x0000;
62pub const BG_HTTP_REDIRECT_POLICY_ALLOW_REPORT: ULONG = 0x0100;
63pub const BG_HTTP_REDIRECT_POLICY_DISALLOW: ULONG = 0x0200;
64pub const BG_HTTP_REDIRECT_POLICY_ALLOW_HTTPS_TO_HTTP: ULONG = 0x0800;