aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/os/fs_defs.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/os/fs_defs.h')
-rw-r--r--src/nvim/os/fs_defs.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/nvim/os/fs_defs.h b/src/nvim/os/fs_defs.h
index e4d79aab66..ddd382a3cb 100644
--- a/src/nvim/os/fs_defs.h
+++ b/src/nvim/os/fs_defs.h
@@ -16,4 +16,9 @@ typedef struct {
#define FILE_ID_EMPTY (FileID) {.inode = 0, .device_id = 0}
+typedef struct {
+ uv_fs_t request; ///< @private The request to uv for the directory.
+ uv_dirent_t ent; ///< @private The entry information.
+} Directory;
+
#endif // NVIM_OS_FS_DEFS_H