@ahmic/autoit-js
Version:
Node.js bindings for AutoItX3.dll
12 lines (9 loc) • 395 B
JavaScript
import './@types/point.js';
import './@types/rect.js';
import { INT, LPCWSTR } from './@types/win32.js';
import { autoit } from './lib/autoit.js';
function WinSetOnTop(windowTitle, windowText = '', onTop) {
return autoit.invoke('AU3_WinSetOnTop', INT, [LPCWSTR, LPCWSTR, INT], [windowTitle, windowText, onTop ? 1 : 0]);
}
export { WinSetOnTop };
//# sourceMappingURL=win-set-on-top.js.map