easymacros/src/lib.rs

23 lines
347 B
Rust
Raw Normal View History

2022-06-15 09:25:58 +00:00
extern crate core;
pub mod x11_safe_wrapper;
pub enum XMacroInstructions {
Delay,
ButtonPress,
ButtonRelease,
MotionNotify,
KeyCodePress,
KeyCodeRelease,
// Screenshot,
KeySymPress,
KeySymRelease,
KeySym,
KeyStrPress,
KeyStrRelease,
KeyStr,
String,
// ExecBlock,
// ExecNoBlock,
2022-06-11 22:50:02 +00:00
}