cleaned up a bit

This commit is contained in:
2021-09-17 09:25:36 +10:00
parent 88524eea4c
commit ad7b81f448
11 changed files with 155 additions and 146 deletions

36
src/keys.h Normal file
View File

@ -0,0 +1,36 @@
#ifndef KEYS_H
#define KEYS_H
#include <uiohook.h>
#include <unistd.h>
#include "timer.h"
#define K_START 1
#define K_STOP 2
#define K_PAUSE 3
#define K_SPLIT 4
#define K_CLOSE 5
#define K_HOTKS 6
#define K_USPLT 7
struct keymap
{
uint16_t START;
uint16_t STOP;
uint16_t PAUSE;
uint16_t SPLIT;
uint16_t CLOSE;
uint16_t HOTKS;
uint16_t USPLT;
};
extern char buf;
extern int pipefd[2];
extern struct keymap km;
bool logger_proc(unsigned int level, const char *format, ...);
void dispatch_proc(uiohook_event * const event);
int handleInput();
#endif