Blame input.h

452870
#ifndef INPUT_H
452870
#define INPUT_H
452870
452870
452870
#include "common.h"
452870
452870
#include <x11 xlib.h=""></x11>
452870
#include <x11 keysym.h=""></x11>
452870
#include <x11 keysymdef.h=""></x11>
452870
452870
452870
typedef struct Input {
452870
  App *app;
452870
  Display *dpy;
452870
  int mappedKeyCode;
452870
  int mappedPressed;
452870
} Input;
452870
452870
452870
int inputInit(Input *in, App *app);
452870
void inputDeinit(Input *in);
452870
452870
void inputEvent(Input *in, unsigned int keySym, int press);
452870
452870
452870
#endif