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
02f2f5f2
Commit
02f2f5f2
authored
Nov 29, 2013
by
Felix Abecassis
Committed by
Jean-Baptiste Kempf
Nov 30, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add #ifdef clauses around MinGW specific code.
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
12d3f542
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
include/vlc_common.h
include/vlc_common.h
+1
-1
src/win32/dirs.c
src/win32/dirs.c
+3
-1
No files found.
include/vlc_common.h
View file @
02f2f5f2
...
@@ -803,7 +803,7 @@ VLC_API bool vlc_ureduce( unsigned *, unsigned *, uint64_t, uint64_t, uint64_t )
...
@@ -803,7 +803,7 @@ VLC_API bool vlc_ureduce( unsigned *, unsigned *, uint64_t, uint64_t, uint64_t )
#include <AvailabilityMacros.h>
#include <AvailabilityMacros.h>
#endif
#endif
#ifdef _
WIN32
#ifdef _
_MINGW32__
# define vlc_memalign(align, size) (__mingw_aligned_malloc(size, align))
# define vlc_memalign(align, size) (__mingw_aligned_malloc(size, align))
# define vlc_free(base) (__mingw_aligned_free(base))
# define vlc_free(base) (__mingw_aligned_free(base))
#elif defined(__APPLE__) && !defined(MAC_OS_X_VERSION_10_6)
#elif defined(__APPLE__) && !defined(MAC_OS_X_VERSION_10_6)
...
...
src/win32/dirs.c
View file @
02f2f5f2
...
@@ -30,7 +30,9 @@
...
@@ -30,7 +30,9 @@
#endif
#endif
#include <vlc_common.h>
#include <vlc_common.h>
#include <w32api.h>
#ifdef __MINGW32__
# include <w32api.h>
#endif
#include <direct.h>
#include <direct.h>
#include <shlobj.h>
#include <shlobj.h>
...
...
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