diff options
author | Valentin Popov <valentin@popov.link> | 2024-01-08 00:21:28 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2024-01-08 00:21:28 +0300 |
commit | 1b6a04ca5504955c571d1c97504fb45ea0befee4 (patch) | |
tree | 7579f518b23313e8a9748a88ab6173d5e030b227 /vendor/windows-sys-0.45.0/src/Windows/Win32/System/ServerBackup/mod.rs | |
parent | 5ecd8cf2cba827454317368b68571df0d13d7842 (diff) | |
download | fparkan-1b6a04ca5504955c571d1c97504fb45ea0befee4.tar.xz fparkan-1b6a04ca5504955c571d1c97504fb45ea0befee4.zip |
Initial vendor packages
Signed-off-by: Valentin Popov <valentin@popov.link>
Diffstat (limited to 'vendor/windows-sys-0.45.0/src/Windows/Win32/System/ServerBackup/mod.rs')
-rw-r--r-- | vendor/windows-sys-0.45.0/src/Windows/Win32/System/ServerBackup/mod.rs | 83 |
1 files changed, 83 insertions, 0 deletions
diff --git a/vendor/windows-sys-0.45.0/src/Windows/Win32/System/ServerBackup/mod.rs b/vendor/windows-sys-0.45.0/src/Windows/Win32/System/ServerBackup/mod.rs new file mode 100644 index 0000000..b87a2e4 --- /dev/null +++ b/vendor/windows-sys-0.45.0/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; +#[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\"`, `\"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 + } +} +#[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 + } +} |