@ahmic/autoit-js
Version:
Node.js bindings for AutoItX3.dll
15 lines (12 loc) • 593 B
JavaScript
import './@types/point.js';
import './@types/rect.js';
import { INT, HWND } from './@types/win32.js';
import { autoit } from './lib/autoit.js';
function ControlShowByHandleSync(windowHandle, controlHandle) {
return autoit.invoke('AU3_ControlShowByHandle', INT, [HWND, HWND], [windowHandle, controlHandle]);
}
function ControlShowByHandle(windowHandle, controlHandle) {
return autoit.invokeAsync('AU3_ControlShowByHandle', INT, [HWND, HWND], [windowHandle, controlHandle]);
}
export { ControlShowByHandle, ControlShowByHandleSync };
//# sourceMappingURL=control-show-by-handle.js.map