]> git.sesse.net Git - vlc/blobdiff - projects/macosx/framework/Headers/Public/VLCStreamSession.h
osx/framework: propagate NSInteger and NSUInteger
[vlc] / projects / macosx / framework / Headers / Public / VLCStreamSession.h
index 2772e58580f248c9bc0f62a89bb297861dd28961..3883f6d05500c754c6b4211516b6a4b29e31c840 100644 (file)
@@ -22,7 +22,6 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
-#import <Cocoa/Cocoa.h>
 #import <VLCKit/VLCStreamOutput.h>
 #import <VLCKit/VLCMediaPlayer.h>
 #import <VLCKit/VLCMedia.h>
@@ -31,7 +30,7 @@
 @interface VLCStreamSession : VLCMediaPlayer {
     VLCStreamOutput * streamOutput;
     VLCMedia * originalMedia;
-    int reattemptedConnections;
+    NSUInteger reattemptedConnections;
     BOOL isComplete;
 }
 
@@ -42,4 +41,5 @@
 @property (readonly) BOOL isComplete;
 
 - (void)startStreaming;
+- (void)stopStreaming;
 @end