aboutsummaryrefslogtreecommitdiff
path: root/src/os/event.h
blob: 230bb6fab98989364e08ac4b3b429edc3ff66f1a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef NEOVIM_OS_EVENT_H
#define NEOVIM_OS_EVENT_H

#include <stdint.h>

typedef enum {
  kEventNone,
  kEventInput,
  kEventEof
} EventType;

void event_init(void);
EventType event_poll(int32_t ms);

#endif