blob: 715f5cc25c8d5c1cdc9471ad9fa62e57a1cae6ee [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar28fb79d2016-01-09 22:28:33 +01002 *
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 */
13typedef 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,
Bram Moolenaar43acbce2016-02-27 15:21:32 +010020 aid_last
Bram Moolenaar28fb79d2016-01-09 22:28:33 +010021} alloc_id_T;