From fc30058a9576804df86d1c571e1d49d08406216f Mon Sep 17 00:00:00 2001 From: "cantab.net!aia21" Date: Tue, 3 Jun 2003 11:07:54 +0000 Subject: [PATCH] Add stat to ntfs_device_operations. (Logical change 1.139) --- include/device.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/device.h b/include/device.h index 49ba0ce9..a0a21d6a 100644 --- a/include/device.h +++ b/include/device.h @@ -22,6 +22,8 @@ #ifndef _NTFS_DEVICE_H #define _NTFS_DEVICE_H +#include + #include "types.h" #include "support.h" @@ -79,6 +81,7 @@ struct ntfs_device_operations { s64 (*pwrite)(struct ntfs_device *dev, const void *buf, s64 count, s64 offset); int (*sync)(struct ntfs_device *dev); + int (*stat)(struct ntfs_device *dev, struct stat *buf); int (*ioctl)(struct ntfs_device *dev, int request, void *argp); };