summaryrefslogtreecommitdiffstats
path: root/vendor/windows-sys/src/Windows/Data/Json/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/windows-sys/src/Windows/Data/Json/mod.rs')
-rw-r--r--vendor/windows-sys/src/Windows/Data/Json/mod.rs37
1 files changed, 0 insertions, 37 deletions
diff --git a/vendor/windows-sys/src/Windows/Data/Json/mod.rs b/vendor/windows-sys/src/Windows/Data/Json/mod.rs
deleted file mode 100644
index 9c7d5c5f4..000000000
--- a/vendor/windows-sys/src/Windows/Data/Json/mod.rs
+++ /dev/null
@@ -1,37 +0,0 @@
-pub type IJsonValue = *mut ::core::ffi::c_void;
-pub type JsonArray = *mut ::core::ffi::c_void;
-#[doc = "*Required features: `\"Data_Json\"`*"]
-#[repr(transparent)]
-pub struct JsonErrorStatus(pub i32);
-impl JsonErrorStatus {
- pub const Unknown: Self = Self(0i32);
- pub const InvalidJsonString: Self = Self(1i32);
- pub const InvalidJsonNumber: Self = Self(2i32);
- pub const JsonValueNotFound: Self = Self(3i32);
- pub const ImplementationLimit: Self = Self(4i32);
-}
-impl ::core::marker::Copy for JsonErrorStatus {}
-impl ::core::clone::Clone for JsonErrorStatus {
- fn clone(&self) -> Self {
- *self
- }
-}
-pub type JsonObject = *mut ::core::ffi::c_void;
-pub type JsonValue = *mut ::core::ffi::c_void;
-#[doc = "*Required features: `\"Data_Json\"`*"]
-#[repr(transparent)]
-pub struct JsonValueType(pub i32);
-impl JsonValueType {
- pub const Null: Self = Self(0i32);
- pub const Boolean: Self = Self(1i32);
- pub const Number: Self = Self(2i32);
- pub const String: Self = Self(3i32);
- pub const Array: Self = Self(4i32);
- pub const Object: Self = Self(5i32);
-}
-impl ::core::marker::Copy for JsonValueType {}
-impl ::core::clone::Clone for JsonValueType {
- fn clone(&self) -> Self {
- *self
- }
-}