1#ifndef DEFINE_FUNC_ATTRIBUTES
2# define DEFINE_FUNC_ATTRIBUTES
3#endif
4#include "nvim/func_attr.h"
5#undef DEFINE_FUNC_ATTRIBUTES
6memfile_T *mf_open(char_u *fname, int flags);
7int mf_open_file(memfile_T *mfp, char_u *fname);
8void mf_close(memfile_T *mfp, _Bool del_file);
9void mf_close_file(buf_T *buf, _Bool getlines);
10void mf_new_page_size(memfile_T *mfp, unsigned new_size);
11bhdr_T *mf_new(memfile_T *mfp, _Bool negative, unsigned page_count);
12bhdr_T *mf_get(memfile_T *mfp, blocknr_T nr, unsigned page_count);
13void mf_put(memfile_T *mfp, bhdr_T *hp, _Bool dirty, _Bool infile);
14void mf_free(memfile_T *mfp, bhdr_T *hp);
15int mf_sync(memfile_T *mfp, int flags);
16void mf_set_dirty(memfile_T *mfp);
17_Bool mf_release_all(void);
18blocknr_T mf_trans_del(memfile_T *mfp, blocknr_T old_nr);
19void mf_free_fnames(memfile_T *mfp);
20void mf_set_fnames(memfile_T *mfp, char_u *fname);
21void mf_fullname(memfile_T *mfp);
22_Bool mf_need_trans(memfile_T *mfp);
23#include "nvim/func_attr.h"
24