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 848f72e commit bb96618Copy full SHA for bb96618
src/platform_impl/windows/util.rs
@@ -252,7 +252,7 @@ pub type GetPointerDeviceRects = unsafe extern "system" fn(
252
pub type GetPointerTouchInfo =
253
unsafe extern "system" fn(pointer_id: u32, touch_info: *mut POINTER_TOUCH_INFO) -> BOOL;
254
255
-pub static WIN10_BUILD_VERSION: Lazy<Option<u32>> = Lazy::new(|| {
+pub(crate) static WIN10_BUILD_VERSION: Lazy<Option<u32>> = Lazy::new(|| {
256
type RtlGetVersion = unsafe extern "system" fn(*mut OSVERSIONINFOW) -> NTSTATUS;
257
let handle = get_function!("ntdll.dll", RtlGetVersion);
258
0 commit comments