Rust binding for AutoItX
(Work in progress): If you need any function just open an issue or a PR.
```rust use autoit::{init, mousemove, mouseget_pos};
init();
mousemove(0, 0, Some(0)); asserteq!(mousegetpos(), (0, 0));
mousemove(50, 50, Some(0)); asserteq!(mousegetpos(), (50, 50)); ```
Only tested with nightly-x86_64-pc-windows-msvc. Not sure if it will work with gnu (mingw).
To build and run I have to set INCLUDE, LIB, LIBCLANG_PATH and PATH in a "VS2015 x64 Native Tools Command Prompt":
```batch set INCLUDE=%INCLUDE%;c:\AutoItX;C:\Program Files (x86)\Windows Kits\10\Include\10.0.10150.0\ucrt
set LIB=%LIB%;C:\Program Files (x86)\Windows Kits\10\Lib\10.0.10150.0\ucrt\x64;C:\AutoItX
set PATH=%PATH%;c:\AutoItX
set LIBCLANG_PATH=D:\LLVM\bin ```
License: Unlicense/MIT