Skip to content

Commit e952b49

Browse files
committed
Added header files
1 parent c250b23 commit e952b49

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

src/linux/LinuxApp.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#pragma once
2+
3+
int RunLinuxApp ( );

src/linux/LinuxKeyLogger.h

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#include <linux/input.h>
2+
#include <fcntl.h>
3+
#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

Comments
 (0)