summaryrefslogtreecommitdiffstats
path: root/vendor/windows-sys/src/Windows/Win32/System/ServerBackup
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
commit698f8c2f01ea549d77d7dc3338a12e04c11057b9 (patch)
tree173a775858bd501c378080a10dca74132f05bc50 /vendor/windows-sys/src/Windows/Win32/System/ServerBackup
parentInitial commit. (diff)
downloadrustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.tar.xz
rustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.zip
Adding upstream version 1.64.0+dfsg1.upstream/1.64.0+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/windows-sys/src/Windows/Win32/System/ServerBackup')
-rw-r--r--vendor/windows-sys/src/Windows/Win32/System/ServerBackup/mod.rs83
1 files changed, 83 insertions, 0 deletions
diff --git a/vendor/windows-sys/src/Windows/Win32/System/ServerBackup/mod.rs b/vendor/windows-sys/src/Windows/Win32/System/ServerBackup/mod.rs
new file mode 100644
index 000000000..5f00f4476
--- /dev/null
+++ b/vendor/windows-sys/src/Windows/Win32/System/ServerBackup/mod.rs
@@ -0,0 +1,83 @@
+pub type IWsbApplicationAsync = *mut ::core::ffi::c_void;
+pub type IWsbApplicationBackupSupport = *mut ::core::ffi::c_void;
+pub type IWsbApplicationRestoreSupport = *mut ::core::ffi::c_void;
+#[doc = "*Required features: `\"Win32_System_ServerBackup\"`*"]
+pub const WSBAPP_ASYNC_IN_PROGRESS: ::windows_sys::core::HRESULT = 7995396i32;
+#[doc = "*Required features: `\"Win32_System_ServerBackup\"`*"]
+pub const WSB_MAX_OB_STATUS_ENTRY: u32 = 5u32;
+#[doc = "*Required features: `\"Win32_System_ServerBackup\"`*"]
+pub const WSB_MAX_OB_STATUS_VALUE_TYPE_PAIR: u32 = 5u32;
+#[repr(C)]
+#[doc = "*Required features: `\"Win32_System_ServerBackup\"`, `\"Win32_Foundation\"`*"]
+#[cfg(feature = "Win32_Foundation")]
+pub struct WSB_OB_REGISTRATION_INFO {
+ pub m_wszResourceDLL: ::windows_sys::core::PWSTR,
+ pub m_guidSnapinId: ::windows_sys::core::GUID,
+ pub m_dwProviderName: u32,
+ pub m_dwProviderIcon: u32,
+ pub m_bSupportsRemoting: super::super::Foundation::BOOLEAN,
+}
+#[cfg(feature = "Win32_Foundation")]
+impl ::core::marker::Copy for WSB_OB_REGISTRATION_INFO {}
+#[cfg(feature = "Win32_Foundation")]
+impl ::core::clone::Clone for WSB_OB_REGISTRATION_INFO {
+ fn clone(&self) -> Self {
+ *self
+ }
+}
+#[repr(C)]
+#[doc = "*Required features: `\"Win32_System_ServerBackup\"`*"]
+pub struct WSB_OB_STATUS_ENTRY {
+ pub m_dwIcon: u32,
+ pub m_dwStatusEntryName: u32,
+ pub m_dwStatusEntryValue: u32,
+ pub m_cValueTypePair: u32,
+ pub m_rgValueTypePair: *mut WSB_OB_STATUS_ENTRY_VALUE_TYPE_PAIR,
+}
+impl ::core::marker::Copy for WSB_OB_STATUS_ENTRY {}
+impl ::core::clone::Clone for WSB_OB_STATUS_ENTRY {
+ fn clone(&self) -> Self {
+ *self
+ }
+}
+#[doc = "*Required features: `\"Win32_System_ServerBackup\"`*"]
+pub type WSB_OB_STATUS_ENTRY_PAIR_TYPE = i32;
+#[doc = "*Required features: `\"Win32_System_ServerBackup\"`*"]
+pub const WSB_OB_ET_UNDEFINED: WSB_OB_STATUS_ENTRY_PAIR_TYPE = 0i32;
+#[doc = "*Required features: `\"Win32_System_ServerBackup\"`*"]
+pub const WSB_OB_ET_STRING: WSB_OB_STATUS_ENTRY_PAIR_TYPE = 1i32;
+#[doc = "*Required features: `\"Win32_System_ServerBackup\"`*"]
+pub const WSB_OB_ET_NUMBER: WSB_OB_STATUS_ENTRY_PAIR_TYPE = 2i32;
+#[doc = "*Required features: `\"Win32_System_ServerBackup\"`*"]
+pub const WSB_OB_ET_DATETIME: WSB_OB_STATUS_ENTRY_PAIR_TYPE = 3i32;
+#[doc = "*Required features: `\"Win32_System_ServerBackup\"`*"]
+pub const WSB_OB_ET_TIME: WSB_OB_STATUS_ENTRY_PAIR_TYPE = 4i32;
+#[doc = "*Required features: `\"Win32_System_ServerBackup\"`*"]
+pub const WSB_OB_ET_SIZE: WSB_OB_STATUS_ENTRY_PAIR_TYPE = 5i32;
+#[doc = "*Required features: `\"Win32_System_ServerBackup\"`*"]
+pub const WSB_OB_ET_MAX: WSB_OB_STATUS_ENTRY_PAIR_TYPE = 6i32;
+#[repr(C)]
+#[doc = "*Required features: `\"Win32_System_ServerBackup\"`*"]
+pub struct WSB_OB_STATUS_ENTRY_VALUE_TYPE_PAIR {
+ pub m_wszObStatusEntryPairValue: ::windows_sys::core::PWSTR,
+ pub m_ObStatusEntryPairType: WSB_OB_STATUS_ENTRY_PAIR_TYPE,
+}
+impl ::core::marker::Copy for WSB_OB_STATUS_ENTRY_VALUE_TYPE_PAIR {}
+impl ::core::clone::Clone for WSB_OB_STATUS_ENTRY_VALUE_TYPE_PAIR {
+ fn clone(&self) -> Self {
+ *self
+ }
+}
+#[repr(C)]
+#[doc = "*Required features: `\"Win32_System_ServerBackup\"`*"]
+pub struct WSB_OB_STATUS_INFO {
+ pub m_guidSnapinId: ::windows_sys::core::GUID,
+ pub m_cStatusEntry: u32,
+ pub m_rgStatusEntry: *mut WSB_OB_STATUS_ENTRY,
+}
+impl ::core::marker::Copy for WSB_OB_STATUS_INFO {}
+impl ::core::clone::Clone for WSB_OB_STATUS_INFO {
+ fn clone(&self) -> Self {
+ *self
+ }
+}