mirror of
https://github.com/neovim/neovim.git
synced 2025-10-06 18:06:30 +00:00

- The 'stripdecls.py' script replaces declarations in all headers by includes to generated headers. `ag '#\s*if(?!ndef NEOVIM_).*((?!#\s*endif).*\n)*#ifdef INCLUDE_GENERATED'` was used for this. - Add and integrate gendeclarations.lua into the build system to generate the required includes. - Add -Wno-unused-function - Made a bunch of old-style definitions ANSI This adds a requirement: all type and structure definitions must be present before INCLUDE_GENERATED_DECLARATIONS-protected include. Warning: mch_expandpath (path.h.generated.h) was moved manually. So far it is the only exception.
17 lines
435 B
C
17 lines
435 B
C
#ifndef NVIM_POPUPMNU_H
|
|
#define NVIM_POPUPMNU_H
|
|
|
|
/// Used for popup menu items.
|
|
typedef struct {
|
|
char_u *pum_text; // main menu text
|
|
char_u *pum_kind; // extra kind text (may be truncated)
|
|
char_u *pum_extra; // extra menu text (may be truncated)
|
|
char_u *pum_info; // extra info
|
|
} pumitem_T;
|
|
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "popupmnu.h.generated.h"
|
|
#endif
|
|
#endif // NVIM_POPUPMNU_H
|