mirror of
https://github.com/neovim/neovim.git
synced 2026-02-23 10:52:01 +10:00
* refactor: format header files with uncrustify * fixup(justin): skip formatting of terminfo_defs.h * fixup: force winsock2 to be included first * fixup: simplify disable/enable directive to "uncrustify:off/on"
14 lines
269 B
C
14 lines
269 B
C
#ifndef NVIM_OS_INPUT_H
|
|
#define NVIM_OS_INPUT_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
#include "nvim/api/private/defs.h"
|
|
#include "nvim/event/multiqueue.h"
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "os/input.h.generated.h"
|
|
#endif
|
|
#endif // NVIM_OS_INPUT_H
|