summaryrefslogtreecommitdiffstats
path: root/vendor/windows-sys/src/Windows/UI/Xaml/Navigation
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/windows-sys/src/Windows/UI/Xaml/Navigation')
-rw-r--r--vendor/windows-sys/src/Windows/UI/Xaml/Navigation/mod.rs39
1 files changed, 39 insertions, 0 deletions
diff --git a/vendor/windows-sys/src/Windows/UI/Xaml/Navigation/mod.rs b/vendor/windows-sys/src/Windows/UI/Xaml/Navigation/mod.rs
new file mode 100644
index 000000000..4fc67ddea
--- /dev/null
+++ b/vendor/windows-sys/src/Windows/UI/Xaml/Navigation/mod.rs
@@ -0,0 +1,39 @@
+pub type FrameNavigationOptions = *mut ::core::ffi::c_void;
+pub type LoadCompletedEventHandler = *mut ::core::ffi::c_void;
+pub type NavigatedEventHandler = *mut ::core::ffi::c_void;
+pub type NavigatingCancelEventArgs = *mut ::core::ffi::c_void;
+pub type NavigatingCancelEventHandler = *mut ::core::ffi::c_void;
+#[doc = "*Required features: `\"UI_Xaml_Navigation\"`*"]
+#[repr(transparent)]
+pub struct NavigationCacheMode(pub i32);
+impl NavigationCacheMode {
+ pub const Disabled: Self = Self(0i32);
+ pub const Required: Self = Self(1i32);
+ pub const Enabled: Self = Self(2i32);
+}
+impl ::core::marker::Copy for NavigationCacheMode {}
+impl ::core::clone::Clone for NavigationCacheMode {
+ fn clone(&self) -> Self {
+ *self
+ }
+}
+pub type NavigationEventArgs = *mut ::core::ffi::c_void;
+pub type NavigationFailedEventArgs = *mut ::core::ffi::c_void;
+pub type NavigationFailedEventHandler = *mut ::core::ffi::c_void;
+#[doc = "*Required features: `\"UI_Xaml_Navigation\"`*"]
+#[repr(transparent)]
+pub struct NavigationMode(pub i32);
+impl NavigationMode {
+ pub const New: Self = Self(0i32);
+ pub const Back: Self = Self(1i32);
+ pub const Forward: Self = Self(2i32);
+ pub const Refresh: Self = Self(3i32);
+}
+impl ::core::marker::Copy for NavigationMode {}
+impl ::core::clone::Clone for NavigationMode {
+ fn clone(&self) -> Self {
+ *self
+ }
+}
+pub type NavigationStoppedEventHandler = *mut ::core::ffi::c_void;
+pub type PageStackEntry = *mut ::core::ffi::c_void;