forked from videolan/vlc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
macosx: fix recursive inclusion of the compatibility header
- Loading branch information
Showing
16 changed files
with
23 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/***************************************************************************** | ||
* intf.h: MacOS X interface module | ||
***************************************************************************** | ||
* Copyright (C) 2002-2013 VLC authors and VideoLAN | ||
* Copyright (C) 2002-2014 VLC authors and VideoLAN | ||
* $Id$ | ||
* | ||
* Authors: Jon Lech Johansen <[email protected]> | ||
|
@@ -38,7 +38,6 @@ | |
#import <vlc_vout_window.h> | ||
|
||
#import <Cocoa/Cocoa.h> | ||
#import "CompatibilityFixes.h" | ||
#import "SPMediaKeyTap.h" /* for the media key support */ | ||
#import "misc.h" | ||
#import "MainWindow.h" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/***************************************************************************** | ||
* misc.h: code not specific to vlc | ||
***************************************************************************** | ||
* Copyright (C) 2003-2013 VLC authors and VideoLAN | ||
* Copyright (C) 2003-2014 VLC authors and VideoLAN | ||
* $Id$ | ||
* | ||
* Authors: Jon Lech Johansen <[email protected]> | ||
|
@@ -23,7 +23,6 @@ | |
*****************************************************************************/ | ||
|
||
#import <Cocoa/Cocoa.h> | ||
#import "CompatibilityFixes.h" | ||
|
||
/***************************************************************************** | ||
* NSSound (VLCAdditions) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/***************************************************************************** | ||
* misc.m: code not specific to vlc | ||
***************************************************************************** | ||
* Copyright (C) 2003-2013 VLC authors and VideoLAN | ||
* Copyright (C) 2003-2014 VLC authors and VideoLAN | ||
* $Id$ | ||
* | ||
* Authors: Jon Lech Johansen <[email protected]> | ||
|
@@ -22,6 +22,7 @@ | |
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. | ||
*****************************************************************************/ | ||
|
||
#import "CompatibilityFixes.h" | ||
#import "misc.h" | ||
#import "intf.h" /* VLCApplication */ | ||
#import "MainWindow.h" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/***************************************************************************** | ||
* playlist.m: MacOS X interface module | ||
***************************************************************************** | ||
* Copyright (C) 2002-2013 VLC authors and VideoLAN | ||
* Copyright (C) 2002-2014 VLC authors and VideoLAN | ||
* $Id$ | ||
* | ||
* Authors: Jon Lech Johansen <[email protected]> | ||
|
@@ -39,6 +39,8 @@ | |
#include <math.h> | ||
#include <sys/mount.h> | ||
|
||
#import "CompatibilityFixes.h" | ||
|
||
#import "intf.h" | ||
#import "wizard.h" | ||
#import "bookmarks.h" | ||
|