Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
be1646a7
Commit
be1646a7
authored
Apr 19, 2009
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include config.h before any other include.
parent
202a87b6
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
2 deletions
+12
-2
modules/access/bda/bda.c
modules/access/bda/bda.c
+8
-1
modules/access/cdda/cdda.c
modules/access/cdda/cdda.c
+3
-0
modules/access/screen/mac.c
modules/access/screen/mac.c
+1
-1
No files found.
modules/access/bda/bda.c
View file @
be1646a7
...
...
@@ -23,9 +23,16 @@
/*****************************************************************************
* Preamble
*****************************************************************************/
#include "bda.h"
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <vlc_plugin.h>
#include "bda.h"
/*****************************************************************************
* Access: local prototypes
*****************************************************************************/
...
...
modules/access/cdda/cdda.c
View file @
be1646a7
...
...
@@ -24,6 +24,9 @@
/*****************************************************************************
* Preamble
*****************************************************************************/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "callback.h"
#include "access.h"
...
...
modules/access/screen/mac.c
View file @
be1646a7
...
...
@@ -25,7 +25,6 @@
/*****************************************************************************
* Preamble
*****************************************************************************/
#import <stdlib.h>
#ifdef HAVE_CONFIG_H
# import "config.h"
...
...
@@ -36,6 +35,7 @@
#import <ApplicationServices/ApplicationServices.h>
#import <OpenGL/OpenGL.h>
#import <OpenGL/gl.h>
#import <stdlib.h>
typedef
int
CGSConnectionRef
;
extern
CGError
CGSNewConnection
(
void
*
,
CGSConnectionRef
*
);
...
...
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