GetLastInputInfo function Null safety user32
- Pointer<
LASTINPUTINFO> plii
Retrieves the time of the last input event.
BOOL GetLastInputInfo(
PLASTINPUTINFO plii
);
Implementation
int GetLastInputInfo(Pointer<LASTINPUTINFO> plii) {
final _GetLastInputInfo = _user32.lookupFunction<
Int32 Function(Pointer<LASTINPUTINFO> plii),
int Function(Pointer<LASTINPUTINFO> plii)>('GetLastInputInfo');
return _GetLastInputInfo(plii);
}