winapi_ui_automation/um/
coml2api.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//! Structured storage, property sets, and related APIs.
7use shared::minwindef::DWORD;
8pub const STGM_READ: DWORD = 0x00000000;
9pub const STGM_WRITE: DWORD = 0x00000001;
10pub const STGM_READWRITE: DWORD = 0x00000002;