@ahmic/autoit-js
Version: 
Node.js bindings for AutoItX3.dll
15 lines (12 loc) • 610 B
JavaScript
import './@types/point.js';
import './@types/rect.js';
import { INT, LPCWSTR } from './@types/win32.js';
import { autoit } from './lib/autoit.js';
function ControlEnableSync(windowTitle, windowText, controlId) {
    return autoit.invoke('AU3_ControlEnable', INT, [LPCWSTR, LPCWSTR, LPCWSTR], [windowTitle, windowText, controlId]);
}
function ControlEnable(windowTitle, windowText, controlId) {
    return autoit.invokeAsync('AU3_ControlEnable', INT, [LPCWSTR, LPCWSTR, LPCWSTR], [windowTitle, windowText, controlId]);
}
export { ControlEnable, ControlEnableSync };
//# sourceMappingURL=control-enable.js.map