Fix for VFAT_IOCTL_READDIR_BOTH.

oldstable
Peter Ganten 1999-09-27 11:46:27 +00:00 committed by Alexandre Julliard
parent b398479d3f
commit 0bac5e9315
1 changed files with 2 additions and 1 deletions

View File

@ -41,7 +41,6 @@ DECLARE_DEBUG_CHANNEL(file)
/* Define the VFAT ioctl to get both short and long file names */
/* FIXME: is it possible to get this to work on other systems? */
#ifdef linux
#define VFAT_IOCTL_READDIR_BOTH _IOR('r', 1, long)
/* We want the real kernel dirent structure, not the libc one */
typedef struct
{
@ -51,6 +50,8 @@ typedef struct
char d_name[256];
} KERNEL_DIRENT;
#define VFAT_IOCTL_READDIR_BOTH _IOR('r', 1, KERNEL_DIRENT [2] )
#else /* linux */
#undef VFAT_IOCTL_READDIR_BOTH /* just in case... */
#endif /* linux */