mirror of
https://github.com/neovim/neovim.git
synced 2026-07-02 15:53:13 +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
422 B
C
18 lines
422 B
C
#pragma once
|
|
|
|
#include <stddef.h> // IWYU pragma: keep
|
|
|
|
#include "nvim/types_defs.h" // IWYU pragma: keep
|
|
#include "nvim/vim_defs.h" // IWYU pragma: keep
|
|
|
|
/// Flags for find_file_*() functions.
|
|
enum {
|
|
FINDFILE_FILE = 0, ///< only files
|
|
FINDFILE_DIR = 1, ///< only directories
|
|
FINDFILE_BOTH = 2, ///< files and directories
|
|
};
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "file_search.h.generated.h"
|
|
#endif
|