mirror of
https://github.com/neovim/neovim.git
synced 2026-05-02 03:55:00 +00:00
Remove `export` pramgas from defs headers as it causes IWYU to believe that the definitions from the defs headers comes from main header, which is not what we really want.
18 lines
526 B
C
18 lines
526 B
C
#pragma once
|
|
|
|
#include <stddef.h>
|
|
|
|
#include "nvim/macros_defs.h"
|
|
#include "nvim/option_defs.h" // IWYU pragma: keep
|
|
#include "nvim/statusline_defs.h" // IWYU pragma: keep
|
|
#include "nvim/types_defs.h" // IWYU pragma: keep
|
|
|
|
/// Array defining what should be done when tabline is clicked
|
|
EXTERN StlClickDefinition *tab_page_click_defs INIT( = NULL);
|
|
/// Size of the tab_page_click_defs array
|
|
EXTERN size_t tab_page_click_defs_size INIT( = 0);
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "statusline.h.generated.h"
|
|
#endif
|