diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2016-04-14 20:47:01 +0200 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2016-05-27 13:18:04 +0200 |
commit | dd539366fcbecd340462a626523a3f689cf7589e (patch) | |
tree | 4866ae0b68db326c34a6aca145ae1e26f047f395 /src/nvim/api/ui.h | |
parent | c74ce334f2f7c42dcd33bc5a0d1cc02b752733f6 (diff) | |
download | rneovim-dd539366fcbecd340462a626523a3f689cf7589e.tar.gz rneovim-dd539366fcbecd340462a626523a3f689cf7589e.tar.bz2 rneovim-dd539366fcbecd340462a626523a3f689cf7589e.zip |
api: refactor remote ui to use API dispatch generation
Diffstat (limited to 'src/nvim/api/ui.h')
-rw-r--r-- | src/nvim/api/ui.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/nvim/api/ui.h b/src/nvim/api/ui.h new file mode 100644 index 0000000000..b3af14f8a8 --- /dev/null +++ b/src/nvim/api/ui.h @@ -0,0 +1,11 @@ +#ifndef NVIM_API_UI_H +#define NVIM_API_UI_H + +#include <stdint.h> + +#include "nvim/api/private/defs.h" + +#ifdef INCLUDE_GENERATED_DECLARATIONS +# include "api/ui.h.generated.h" +#endif +#endif // NVIM_API_UI_H |