Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
e53c94ea
Commit
e53c94ea
authored
Sep 29, 2008
by
Geoffroy Couprie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
WinCE: cleaning my header inclusion mess
parent
13a184d0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
8 deletions
+4
-8
include/vlc_charset.h
include/vlc_charset.h
+1
-1
include/vlc_common.h
include/vlc_common.h
+3
-7
No files found.
include/vlc_charset.h
View file @
e53c94ea
...
...
@@ -50,7 +50,7 @@ VLC_EXPORT( int, utf8_scandir, ( const char *dirname, char ***namelist, int (*se
VLC_EXPORT
(
int
,
utf8_mkdir
,
(
const
char
*
filename
,
mode_t
mode
)
);
VLC_EXPORT
(
int
,
utf8_unlink
,
(
const
char
*
filename
)
);
#if
def WIN32
#if
defined( WIN32 ) && !defined( UNDER_CE )
# define stat _stati64
#endif
...
...
include/vlc_common.h
View file @
e53c94ea
...
...
@@ -376,18 +376,14 @@ typedef struct meta_engine_t meta_engine_t;
/* stat/lstat/fstat */
#ifdef WIN32
# ifdef UNDER_CE
# undef _STAT_DEFINED
# endif
#include <sys/stat.h>
# ifndef UNDER_CE
struct
_stati64
;
#define stat _stati64
#define fstat _fstati64
# else
# define stat _stat
# define fstat _fstat
# endif
#endif
/* You should otherwise use utf8_stat and utf8_lstat. */
#else
struct
stat
;
...
...
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