├── .gitignore ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── Cargo.lock ├── Cargo.toml ├── LICENSE.txt ├── README-crate.md ├── README.md ├── dll ├── CHANGELOG.md ├── Cargo.toml └── src │ └── lib.rs ├── example.ah2 ├── example.ahk ├── note-IVirtualDesktopNotification.md ├── note-window-rs.md ├── src ├── comobjects.rs ├── desktop.rs ├── events.rs ├── interfaces.rs ├── lib.rs ├── listener.rs ├── log.rs └── tests.rs └── testbin ├── .gitignore ├── Cargo.toml └── src └── main.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciantic/VirtualDesktopAccessor/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciantic/VirtualDesktopAccessor/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciantic/VirtualDesktopAccessor/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciantic/VirtualDesktopAccessor/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciantic/VirtualDesktopAccessor/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciantic/VirtualDesktopAccessor/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciantic/VirtualDesktopAccessor/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README-crate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciantic/VirtualDesktopAccessor/HEAD/README-crate.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciantic/VirtualDesktopAccessor/HEAD/README.md -------------------------------------------------------------------------------- /dll/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciantic/VirtualDesktopAccessor/HEAD/dll/CHANGELOG.md -------------------------------------------------------------------------------- /dll/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciantic/VirtualDesktopAccessor/HEAD/dll/Cargo.toml -------------------------------------------------------------------------------- /dll/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciantic/VirtualDesktopAccessor/HEAD/dll/src/lib.rs -------------------------------------------------------------------------------- /example.ah2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciantic/VirtualDesktopAccessor/HEAD/example.ah2 -------------------------------------------------------------------------------- /example.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciantic/VirtualDesktopAccessor/HEAD/example.ahk -------------------------------------------------------------------------------- /note-IVirtualDesktopNotification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciantic/VirtualDesktopAccessor/HEAD/note-IVirtualDesktopNotification.md -------------------------------------------------------------------------------- /note-window-rs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciantic/VirtualDesktopAccessor/HEAD/note-window-rs.md -------------------------------------------------------------------------------- /src/comobjects.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciantic/VirtualDesktopAccessor/HEAD/src/comobjects.rs -------------------------------------------------------------------------------- /src/desktop.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciantic/VirtualDesktopAccessor/HEAD/src/desktop.rs -------------------------------------------------------------------------------- /src/events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciantic/VirtualDesktopAccessor/HEAD/src/events.rs -------------------------------------------------------------------------------- /src/interfaces.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciantic/VirtualDesktopAccessor/HEAD/src/interfaces.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciantic/VirtualDesktopAccessor/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/listener.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciantic/VirtualDesktopAccessor/HEAD/src/listener.rs -------------------------------------------------------------------------------- /src/log.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciantic/VirtualDesktopAccessor/HEAD/src/log.rs -------------------------------------------------------------------------------- /src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciantic/VirtualDesktopAccessor/HEAD/src/tests.rs -------------------------------------------------------------------------------- /testbin/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | Cargo.lock 3 | # rustfmt 4 | **/*.rs.bk -------------------------------------------------------------------------------- /testbin/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciantic/VirtualDesktopAccessor/HEAD/testbin/Cargo.toml -------------------------------------------------------------------------------- /testbin/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciantic/VirtualDesktopAccessor/HEAD/testbin/src/main.rs --------------------------------------------------------------------------------