mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
created header file
This commit is contained in:
parent
9b140fafe3
commit
dc5debadc2
@ -1,3 +1,10 @@
|
||||
// This is an open source non-commercial project. Dear PVS-Studio, please check
|
||||
// it. PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com
|
||||
|
||||
// User defined function support
|
||||
|
||||
#include "nvim/eval/user_funcs.h"
|
||||
|
||||
// flags used in uf_flags
|
||||
#define FC_ABORT 0x01 // abort function on error
|
||||
#define FC_RANGE 0x02 // function accepts range
|
||||
|
9
src/nvim/eval/user_funcs.h
Normal file
9
src/nvim/eval/user_funcs.h
Normal file
@ -0,0 +1,9 @@
|
||||
#ifndef NVIM_EVAL_USER_FUNCS_H
|
||||
#define NVIM_EVAL_USER_FUNCS_H
|
||||
|
||||
#include "nvim/eval/typeval.h"
|
||||
|
||||
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
||||
# include "eval/user_funcs.h.generated.h"
|
||||
#endif
|
||||
#endif // NVIM_EVAL_USER_FUNCS_H
|
Loading…
Reference in New Issue
Block a user