]> git.sesse.net Git - vlc/blobdiff - projects/macosx/framework/Headers/Public/VLCAudio.h
macosx/framework: VLCAudio now use a media_player. Cool.
[vlc] / projects / macosx / framework / Headers / Public / VLCAudio.h
index b31dd453490222e0b9b5e7698c437dca965427c9..a44bd387a63175d79dd2b864ccb1b14c861ef642 100644 (file)
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
-#import <Cocoa/Cocoa.h>
-
 /* Notification Messages */
 /**
  * Standard notification messages that are emitted by VLCAudio object.
  */
 extern NSString * VLCMediaPlayerVolumeChanged;
 
-@class VLCLibrary;
+@class VLCMediaPlayer;
 
 /**
  * TODO: Documentation VLCAudio
  */
-@interface VLCAudio : NSObject 
+@interface VLCAudio : NSObject
 {
-    VLCLibrary * library;   //< Library to control audio for
+    void *instance;
 }
 
 /* Properties */
 - (void)setMute:(BOOL)value;
 
 @property (setter=setMute:) BOOL isMuted;
-@property (assign) int volume;
+@property (assign) NSUInteger volume;
+
+- (void)volumeDown;
+- (void)volumeUp;
 @end