OsKeyEvent

Type Alias OsKeyEvent 

Source
pub type OsKeyEvent = MSG;
Expand description

Platform-specific type for OS key events in KeyboardHandler. Matches cef_event_handle_t after deref:

  • Windows: *mut MSG → MSG
  • Linux: *mut XEvent → _XEvent (libX11)
  • macOS: *mut c_void → c_void (NSEvent-backed; cef-dll-sys uses an opaque pointer here)

Aliased Type§

#[repr(C)]
pub struct OsKeyEvent { pub hwnd: HWND, pub message: u32, pub wParam: u64, pub lParam: i64, pub time: u32, pub pt: tagPOINT, }

Fields§

§hwnd: HWND§message: u32§wParam: u64§lParam: i64§time: u32§pt: tagPOINT