start working on encryption

This commit is contained in:
Ferdinand Schober
2024-09-02 15:35:52 +02:00
committed by Ferdinand Schober
parent 0d074e19f1
commit 79bc64e56e
9 changed files with 1263 additions and 92 deletions

6
src/plugin.rs Normal file
View File

@@ -0,0 +1,6 @@
use input_capture::CaptureEvent;
struct PluginManager {
capture_hook: Vec<Box<dyn Fn(CaptureEvent)>>,
capture_transform: Vec<Box<dyn Fn(CaptureEvent) -> CaptureEvent>>,
}