Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
VideoLAN
libdvdread
Commits
777e4ebd
Commit
777e4ebd
authored
Jun 01, 2010
by
John Stebbins
Browse files
Win32: large file support under Mingw to go over 2G limits
parent
98c6341d
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/dvd_input.h
View file @
777e4ebd
...
...
@@ -31,6 +31,17 @@
typedef
struct
dvd_input_s
*
dvd_input_t
;
#if defined( __MINGW32__ )
# undef lseek
# define lseek _lseeki64
# undef off_t
# define off_t off64_t
# undef stat
# define stat _stati64
# define fstat _fstati64
# define wstat _wstati64
#endif
/**
* Function pointers that will be filled in by the input implementation.
* These functions provide the main API.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment