summaryrefslogtreecommitdiffstats
path: root/vendor/windows-sys-0.28.0/src/Windows/Win32/Storage/OperationRecorder/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/windows-sys-0.28.0/src/Windows/Win32/Storage/OperationRecorder/mod.rs')
-rw-r--r--vendor/windows-sys-0.28.0/src/Windows/Win32/Storage/OperationRecorder/mod.rs36
1 files changed, 0 insertions, 36 deletions
diff --git a/vendor/windows-sys-0.28.0/src/Windows/Win32/Storage/OperationRecorder/mod.rs b/vendor/windows-sys-0.28.0/src/Windows/Win32/Storage/OperationRecorder/mod.rs
deleted file mode 100644
index 571e0ea3e..000000000
--- a/vendor/windows-sys-0.28.0/src/Windows/Win32/Storage/OperationRecorder/mod.rs
+++ /dev/null
@@ -1,36 +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 OperationEnd(operationendparams: *const OPERATION_END_PARAMETERS) -> super::super::Foundation::BOOL;
- #[cfg(feature = "Win32_Foundation")]
- pub fn OperationStart(operationstartparams: *const OPERATION_START_PARAMETERS) -> super::super::Foundation::BOOL;
-}
-#[repr(C)]
-pub struct OPERATION_END_PARAMETERS {
- pub Version: u32,
- pub OperationId: u32,
- pub Flags: OPERATION_END_PARAMETERS_FLAGS,
-}
-impl ::core::marker::Copy for OPERATION_END_PARAMETERS {}
-impl ::core::clone::Clone for OPERATION_END_PARAMETERS {
- fn clone(&self) -> Self {
- *self
- }
-}
-pub type OPERATION_END_PARAMETERS_FLAGS = u32;
-pub const OPERATION_END_DISCARD: OPERATION_END_PARAMETERS_FLAGS = 1u32;
-pub type OPERATION_START_FLAGS = u32;
-pub const OPERATION_START_TRACE_CURRENT_THREAD: OPERATION_START_FLAGS = 1u32;
-#[repr(C)]
-pub struct OPERATION_START_PARAMETERS {
- pub Version: u32,
- pub OperationId: u32,
- pub Flags: OPERATION_START_FLAGS,
-}
-impl ::core::marker::Copy for OPERATION_START_PARAMETERS {}
-impl ::core::clone::Clone for OPERATION_START_PARAMETERS {
- fn clone(&self) -> Self {
- *self
- }
-}