]>
Commit | Line | Data |
---|---|---|
dfbdd7ed JF |
1 | #ifndef MEDIAPLAYER_MEDIAPLAYER_H_ |
2 | #define MEDIAPLAYER_MEDIAPLAYER_H_ | |
3 | ||
4 | typedef enum { | |
5 | MPMovieScalingModeNone, | |
6 | MPMovieScalingModeAspectFit, | |
7 | MPMovieScalingModeAspectFill, | |
8 | MPMovieScalingModeFill, | |
9 | } MPMovieScalingMode; | |
10 | ||
11 | #import <MediaPlayer/MPMoviePlayerController.h> | |
12 | #import <MediaPlayer/MPVideoView.h> | |
13 | ||
14 | #import <MediaPlayer/UIEventObservableWindow.h> | |
15 | #import <MediaPlayer/UIMoviePlayerController.h> | |
16 | ||
17 | #ifdef __cplusplus | |
18 | extern "C" { | |
19 | #endif | |
20 | ||
21 | extern NSString * const MPMoviePlayerPlaybackDidFinishNotification; | |
22 | ||
23 | #ifdef __cplusplus | |
24 | } | |
25 | #endif | |
26 | ||
27 | #endif/*MEDIAPLAYER_MEDIAPLAYER_H_*/ |