summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-09-12 17:05:44 +0000
committerUoti Urpala <uau@glyph.nonexistent.invalid>2010-11-02 04:16:46 +0200
commiteb67fe1a34296454149baf34ce1364563c0d9446 (patch)
treea579cbe076c20855bc6fcae08c34c4438435937e
parent5896036cb381bef1730b0140e90160618a557a74 (diff)
downloadmpv-eb67fe1a34296454149baf34ce1364563c0d9446.tar.bz2
mpv-eb67fe1a34296454149baf34ce1364563c0d9446.tar.xz
vo_corevideo.h: Add standard multiple inclusion guards
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32210 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r--libvo/vo_corevideo.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/libvo/vo_corevideo.h b/libvo/vo_corevideo.h
index 2590df871c..926399053f 100644
--- a/libvo/vo_corevideo.h
+++ b/libvo/vo_corevideo.h
@@ -20,6 +20,9 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
+#ifndef MPLAYER_VO_COREVIDEO_H
+#define MPLAYER_VO_COREVIDEO_H
+
#import <Cocoa/Cocoa.h>
#import <QuartzCore/QuartzCore.h>
#import <Carbon/Carbon.h>
@@ -108,3 +111,5 @@
- (void) mouseEvent: (NSEvent *) theEvent;
- (void) check_events;
@end
+
+#endif /* MPLAYER_VO_COREVIDEO_H */