UNPKG

win32-api

Version:

FFI definitions of windows win32 api for node-ffi

25 lines 1.13 kB
import { User32_R } from './PR.types.js'; export class User32_S extends User32_R { /** * @link https://learn.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-sendinput */ SendInput; /** https://learn.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-sendmessagew */ SendMessageW; /** https://learn.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-sendmessagetimeoutw */ SendMessageTimeoutW; /** https://learn.microsoft.com/zh-cn/windows/win32/api/winuser/nf-winuser-setforegroundwindow */ SetForegroundWindow; /** https://learn.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-setparent */ SetParent; /** https://learn.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-setwindowpos */ SetWindowPos; /** https://learn.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-setwindowtextw */ SetWindowTextW; SetWinEventHook; ShowWindow; /** https://learn.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-showwindowasync */ ShowWindowAsync; } /* c8 ignore stop */ //# sourceMappingURL=S.types.js.map