xref: /vim-8.2.3635/src/alloc.h (revision bb76f24a)
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_errmsg,
19 	aid_qf_pattern,
20 	aid_last
21 } alloc_id_T;
22