diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 08:50:31 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 08:50:31 +0000 |
commit | aed8ce9da277f5ecffe968b324f242c41c3b752a (patch) | |
tree | d2e538394cb7a8a7c42a4aac6ccf1a8e3256999b /src/proto/vim9class.pro | |
parent | Initial commit. (diff) | |
download | vim-aed8ce9da277f5ecffe968b324f242c41c3b752a.tar.xz vim-aed8ce9da277f5ecffe968b324f242c41c3b752a.zip |
Adding upstream version 2:9.0.1378.upstream/2%9.0.1378upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/proto/vim9class.pro')
-rw-r--r-- | src/proto/vim9class.pro | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/proto/vim9class.pro b/src/proto/vim9class.pro new file mode 100644 index 0000000..707f4ec --- /dev/null +++ b/src/proto/vim9class.pro @@ -0,0 +1,18 @@ +/* vim9class.c */ +int object_index_from_itf_index(class_T *itf, int is_method, int idx, class_T *cl); +void ex_class(exarg_T *eap); +type_T *class_member_type(class_T *cl, char_u *name, char_u *name_end, int *member_idx); +void ex_enum(exarg_T *eap); +void ex_type(exarg_T *eap); +int class_object_index(char_u **arg, typval_T *rettv, evalarg_T *evalarg, int verbose); +ufunc_T *find_class_func(char_u **arg); +int class_member_index(char_u *name, size_t len, class_T **cl_ret, cctx_T *cctx); +int inside_class(cctx_T *cctx_arg, class_T *cl); +void copy_object(typval_T *from, typval_T *to); +void object_unref(object_T *obj); +void copy_class(typval_T *from, typval_T *to); +void class_unref(class_T *cl); +void object_created(object_T *obj); +void object_cleared(object_T *obj); +int object_free_nonref(int copyID); +/* vim: set ft=c : */ |