From 9162e7b451910b68f7d019657c34c9c80c7fd473 Mon Sep 17 00:00:00 2001 From: enricobuehler Date: Wed, 22 Jul 2026 12:25:03 +0200 Subject: [PATCH] fix(windows/vdisplay): drop now-unused INFINITE import (poll-loop wait) Co-Authored-By: Claude Opus 4.8 (1M context) --- packaging/windows/drivers/pf-vdisplay/src/cursor_worker.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packaging/windows/drivers/pf-vdisplay/src/cursor_worker.rs b/packaging/windows/drivers/pf-vdisplay/src/cursor_worker.rs index 76143f6c..87f69ba1 100644 --- a/packaging/windows/drivers/pf-vdisplay/src/cursor_worker.rs +++ b/packaging/windows/drivers/pf-vdisplay/src/cursor_worker.rs @@ -26,7 +26,7 @@ use windows::Win32::Foundation::{CloseHandle, HANDLE, WAIT_OBJECT_0, WAIT_TIMEOU use windows::Win32::System::Memory::{ FILE_MAP_READ, FILE_MAP_WRITE, MEMORY_MAPPED_VIEW_ADDRESS, MapViewOfFile, UnmapViewOfFile, }; -use windows::Win32::System::Threading::{CreateEventW, INFINITE, SetEvent, WaitForMultipleObjects}; +use windows::Win32::System::Threading::{CreateEventW, SetEvent, WaitForMultipleObjects}; /// The host's `IOCTL_SET_CURSOR_CHANNEL` delivery: the [`CursorShm`] mapping handle VALUE, /// already duplicated into this WUDFHost process. Owning a `CursorChannel` means owning the