blob: 7a992c689fdbf3ce3ef0eb246692d2f335851b2a [file] [log] [blame]
Bram Moolenaar28fb79d2016-01-09 22:28:33 +01001/* vi:set ts=8 sts=4 sw=4:
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 */
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 Moolenaara260b872016-01-15 20:48:22 +010020 aid_last,
Bram Moolenaar28fb79d2016-01-09 22:28:33 +010021} alloc_id_T;