We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e0385d commit 5c07ba4Copy full SHA for 5c07ba4
src/platform_impl/windows/util.rs
@@ -245,7 +245,7 @@ pub type GetPointerDeviceRects = unsafe extern "system" fn(
245
pub type GetPointerTouchInfo =
246
unsafe extern "system" fn(pointerId: u32, touchInfo: *mut POINTER_TOUCH_INFO) -> BOOL;
247
248
-pub static WIN10_BUILD_VERSION: Lazy<Option<u32>> = Lazy::new(|| {
+pub(crate) static WIN10_BUILD_VERSION: Lazy<Option<u32>> = Lazy::new(|| {
249
type RtlGetVersion = unsafe extern "system" fn(*mut OSVERSIONINFOW) -> NTSTATUS;
250
let handle = get_function!("ntdll.dll", RtlGetVersion);
251
0 commit comments