view src/alloc.h @ 13414:0e81cd859dec v8.0.1581

patch 8.0.1581: cannot build Win32 GUI without +eval commit https://github.com/vim/vim/commit/3b3a9a5609df2cbaef3512032ac47c1779fbc775 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Mar 6 16:11:47 2018 +0100 patch 8.0.1581: cannot build Win32 GUI without +eval Problem: Cannot build Win32 GUI without +eval. Solution: Define HAVE_INPUT_METHOD without +eval. (Ken Takata)
author Christian Brabandt <cb@256bit.org>
date Tue, 06 Mar 2018 16:15:07 +0100
parents 4aead6a9b7a9
children 98274127d675
line wrap: on
line source

/* vi:set ts=8 sts=4 sw=4 noet:
 *
 * VIM - Vi IMproved	by Bram Moolenaar
 *
 * Do ":help uganda"  in Vim to read copying and usage conditions.
 * Do ":help credits" in Vim to see a list of people who contributed.
 */

/*
 * alloc.h: enumeration of alloc IDs.
 * Each entry must be on exactly one line, GetAllocId() depends on that.
 */
typedef enum {
	aid_none = 0,
	aid_qf_dirname_start,
	aid_qf_dirname_now,
	aid_qf_namebuf,
	aid_qf_errmsg,
	aid_qf_pattern,
	aid_last
} alloc_id_T;