summaryrefslogtreecommitdiffstats
path: root/vendor/windows-sys-0.28.0/src/Windows/Win32/System/CorrelationVector/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/windows-sys-0.28.0/src/Windows/Win32/System/CorrelationVector/mod.rs')
-rw-r--r--vendor/windows-sys-0.28.0/src/Windows/Win32/System/CorrelationVector/mod.rs31
1 files changed, 0 insertions, 31 deletions
diff --git a/vendor/windows-sys-0.28.0/src/Windows/Win32/System/CorrelationVector/mod.rs b/vendor/windows-sys-0.28.0/src/Windows/Win32/System/CorrelationVector/mod.rs
deleted file mode 100644
index 5ea89baa6..000000000
--- a/vendor/windows-sys-0.28.0/src/Windows/Win32/System/CorrelationVector/mod.rs
+++ /dev/null
@@ -1,31 +0,0 @@
-#![allow(non_snake_case, non_camel_case_types, non_upper_case_globals, clashing_extern_declarations, clippy::all)]
-#[link(name = "windows")]
-extern "system" {
- #[cfg(feature = "Win32_Foundation")]
- pub fn RtlExtendCorrelationVector(correlationvector: *mut CORRELATION_VECTOR) -> u32;
- #[cfg(feature = "Win32_Foundation")]
- pub fn RtlIncrementCorrelationVector(correlationvector: *mut CORRELATION_VECTOR) -> u32;
- #[cfg(feature = "Win32_Foundation")]
- pub fn RtlInitializeCorrelationVector(correlationvector: *mut CORRELATION_VECTOR, version: i32, guid: *const ::windows_sys::core::GUID) -> u32;
- #[cfg(feature = "Win32_Foundation")]
- pub fn RtlValidateCorrelationVector(vector: *const CORRELATION_VECTOR) -> u32;
-}
-#[repr(C)]
-#[cfg(feature = "Win32_Foundation")]
-pub struct CORRELATION_VECTOR {
- pub Version: super::super::Foundation::CHAR,
- pub Vector: [super::super::Foundation::CHAR; 129],
-}
-#[cfg(feature = "Win32_Foundation")]
-impl ::core::marker::Copy for CORRELATION_VECTOR {}
-#[cfg(feature = "Win32_Foundation")]
-impl ::core::clone::Clone for CORRELATION_VECTOR {
- fn clone(&self) -> Self {
- *self
- }
-}
-pub const RTL_CORRELATION_VECTOR_STRING_LENGTH: u32 = 129u32;
-pub const RTL_CORRELATION_VECTOR_V1_LENGTH: u32 = 64u32;
-pub const RTL_CORRELATION_VECTOR_V1_PREFIX_LENGTH: u32 = 16u32;
-pub const RTL_CORRELATION_VECTOR_V2_LENGTH: u32 = 128u32;
-pub const RTL_CORRELATION_VECTOR_V2_PREFIX_LENGTH: u32 = 22u32;