#[repr(C)]pub struct MSG {
pub hwnd: *mut c_void,
pub message: u32,
pub wParam: usize,
pub lParam: isize,
pub time: u32,
pub pt: POINT,
}Expand description
C.25 MSG
contains a message’s information
Fields§
§hwnd: *mut c_void§message: u32§wParam: usize§lParam: isize§time: u32§pt: POINTTrait Implementations§
Auto Trait Implementations§
impl Freeze for MSG
impl RefUnwindSafe for MSG
impl !Send for MSG
impl !Sync for MSG
impl Unpin for MSG
impl UnwindSafe for MSG
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more