Commit 86c91b1f authored by Geoffroy Couprie's avatar Geoffroy Couprie Committed by Jean-Baptiste Kempf

Windows: use _wrewinddir instead of rewinddir

Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 82512718
...@@ -56,6 +56,15 @@ static inline int vlc_closedir( DIR *dir ) ...@@ -56,6 +56,15 @@ static inline int vlc_closedir( DIR *dir )
} }
# undef closedir # undef closedir
# define closedir vlc_closedir # define closedir vlc_closedir
static inline void vlc_rewinddir( DIR *dir )
{
_WDIR *wdir = *(_WDIR **)dir;
_wrewinddir( wdir );
}
# undef rewinddir
# define rewinddir vlc_rewinddir
#endif #endif
VLC_EXPORT( int, vlc_stat, ( const char *filename, struct stat *buf ) ); VLC_EXPORT( int, vlc_stat, ( const char *filename, struct stat *buf ) );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment