diff options
Diffstat (limited to 'src/nvim/api/tabpage.h')
-rw-r--r-- | src/nvim/api/tabpage.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/api/tabpage.h b/src/nvim/api/tabpage.h index ef049fb644..dddcecbdbd 100644 --- a/src/nvim/api/tabpage.h +++ b/src/nvim/api/tabpage.h @@ -4,14 +4,14 @@ #include <stdint.h> #include <stdbool.h> -#include "nvim/api/defs.h" +#include "nvim/api/private/defs.h" /// Gets the number of windows in a tabpage /// /// @param tabpage The tabpage /// @param[out] err Details of an error that may have occurred /// @return The number of windows in `tabpage` -Integer tabpage_get_window_count(Tabpage tabpage, Error *err); +WindowArray tabpage_get_windows(Tabpage tabpage, Error *err); /// Gets a tabpage variable /// |