summaryrefslogtreecommitdiffstats
path: root/vendor/windows-metadata/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/windows-metadata/src/lib.rs')
-rw-r--r--vendor/windows-metadata/src/lib.rs57
1 files changed, 57 insertions, 0 deletions
diff --git a/vendor/windows-metadata/src/lib.rs b/vendor/windows-metadata/src/lib.rs
new file mode 100644
index 000000000..0e832603c
--- /dev/null
+++ b/vendor/windows-metadata/src/lib.rs
@@ -0,0 +1,57 @@
+#![allow(dead_code)]
+
+use std::collections::*;
+mod attributes;
+mod bindings;
+mod imp;
+pub mod reader;
+pub mod writer;
+
+pub use attributes::*;
+use bindings::*;
+use imp::*;
+use std::io::*;
+use std::mem::*;
+use std::ptr::*;
+
+macro_rules! flags {
+ ($name:ident, $size:ty) => {
+ #[derive(Default, Copy, Clone, PartialEq, Eq)]
+ pub struct $name(pub $size);
+ impl $name {
+ pub fn contains(&self, contains: Self) -> bool {
+ *self & contains == contains
+ }
+ }
+ impl std::ops::BitOr for $name {
+ type Output = Self;
+ fn bitor(self, other: Self) -> Self {
+ Self(self.0 | other.0)
+ }
+ }
+ impl std::ops::BitAnd for $name {
+ type Output = Self;
+ fn bitand(self, other: Self) -> Self {
+ Self(self.0 & other.0)
+ }
+ }
+ impl std::ops::BitOrAssign for $name {
+ fn bitor_assign(&mut self, other: Self) {
+ self.0.bitor_assign(other.0)
+ }
+ }
+ impl std::ops::BitAndAssign for $name {
+ fn bitand_assign(&mut self, other: Self) {
+ self.0.bitand_assign(other.0)
+ }
+ }
+ impl std::ops::Not for $name {
+ type Output = Self;
+ fn not(self) -> Self {
+ Self(self.0.not())
+ }
+ }
+ };
+}
+
+pub(crate) use flags;