xref: /vim-8.2.3635/src/alloc.h (revision 5f1920ad)
1 /* vi:set ts=8 sts=4 sw=4 noet:
2  *
3  * VIM - Vi IMproved	by Bram Moolenaar
4  *
5  * Do ":help uganda"  in Vim to read copying and usage conditions.
6  * Do ":help credits" in Vim to see a list of people who contributed.
7  */
8 
9 /*
10  * alloc.h: enumeration of alloc IDs.
11  * Each entry must be on exactly one line, GetAllocId() depends on that.
12  */
13 typedef enum {
14 	aid_none = 0,
15 	aid_qf_dirname_start,
16 	aid_qf_dirname_now,
17 	aid_qf_namebuf,
18 	aid_qf_module,
19 	aid_qf_errmsg,
20 	aid_qf_pattern,
21 	aid_tagstack_items,
22 	aid_tagstack_from,
23 	aid_tagstack_details,
24 	aid_sign_getdefined,
25 	aid_sign_getplaced,
26 	aid_sign_define_by_name,
27 	aid_sign_getlist,
28 	aid_sign_getplaced_dict,
29 	aid_sign_getplaced_list,
30 	aid_insert_sign,
31 	aid_sign_getinfo,
32 	aid_last
33 } alloc_id_T;
34