mirror of
https://github.com/neovim/neovim.git
synced 2026-02-10 14:31:52 +10:00
16 lines
334 B
C
16 lines
334 B
C
#ifndef NVIM_LUA_CONVERTER_H
|
|
#define NVIM_LUA_CONVERTER_H
|
|
|
|
#include <lua.h>
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
#include "nvim/api/private/defs.h"
|
|
#include "nvim/eval/typval_defs.h"
|
|
#include "nvim/func_attr.h"
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "lua/converter.h.generated.h"
|
|
#endif
|
|
#endif // NVIM_LUA_CONVERTER_H
|