Skip to content

Commit 5c07ba4

Browse files
committed
fix pub(crate) visibility
1 parent 9e0385d commit 5c07ba4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/platform_impl/windows/util.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ pub type GetPointerDeviceRects = unsafe extern "system" fn(
245245
pub type GetPointerTouchInfo =
246246
unsafe extern "system" fn(pointerId: u32, touchInfo: *mut POINTER_TOUCH_INFO) -> BOOL;
247247

248-
pub static WIN10_BUILD_VERSION: Lazy<Option<u32>> = Lazy::new(|| {
248+
pub(crate) static WIN10_BUILD_VERSION: Lazy<Option<u32>> = Lazy::new(|| {
249249
type RtlGetVersion = unsafe extern "system" fn(*mut OSVERSIONINFOW) -> NTSTATUS;
250250
let handle = get_function!("ntdll.dll", RtlGetVersion);
251251

0 commit comments

Comments
 (0)