Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
92e270eb
Commit
92e270eb
authored
Sep 03, 2012
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove old MSVC and Borland work-arounds
parent
5bf7136d
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
28 deletions
+0
-28
include/vlc_common.h
include/vlc_common.h
+0
-28
No files found.
include/vlc_common.h
View file @
92e270eb
...
@@ -35,10 +35,6 @@
...
@@ -35,10 +35,6 @@
/*****************************************************************************
/*****************************************************************************
* Required vlc headers
* Required vlc headers
*****************************************************************************/
*****************************************************************************/
#if defined( _MSC_VER )
# pragma warning( disable : 4244 )
#endif
#include "vlc_config.h"
#include "vlc_config.h"
/*****************************************************************************
/*****************************************************************************
...
@@ -784,15 +780,6 @@ static inline void SetQWLE (void *p, uint64_t qw)
...
@@ -784,15 +780,6 @@ static inline void SetQWLE (void *p, uint64_t qw)
/* Stuff defined in src/extras/libc.c */
/* Stuff defined in src/extras/libc.c */
#if defined(WIN32)
#if defined(WIN32)
/* win32, cl and icl support */
# if defined( _MSC_VER ) || !defined( __MINGW32__ )
# define __attribute__(x)
# define S_IFBLK 0x3000
/* Block */
# define S_ISBLK(m) (0)
# define S_ISCHR(m) (0)
# define S_ISFIFO(m) (((m)&_S_IFMT) == _S_IFIFO)
# define S_ISREG(m) (((m)&_S_IFMT) == _S_IFREG)
# endif
/* several type definitions */
/* several type definitions */
# if defined( __MINGW32__ )
# if defined( __MINGW32__ )
...
@@ -808,21 +795,6 @@ static inline void SetQWLE (void *p, uint64_t qw)
...
@@ -808,21 +795,6 @@ static inline void SetQWLE (void *p, uint64_t qw)
# endif
# endif
# endif
# endif
# if defined( _MSC_VER )
# if !defined( _OFF_T_DEFINED )
typedef
__int64
off_t
;
# define _OFF_T_DEFINED
# else
/* for wx compatibility typedef long off_t; */
# define off_t __int64
# endif
# endif
# if defined( __BORLANDC__ )
# undef off_t
# define off_t unsigned __int64
# endif
# ifndef O_NONBLOCK
# ifndef O_NONBLOCK
# define O_NONBLOCK 0
# define O_NONBLOCK 0
# endif
# endif
...
...
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