]> git.sesse.net Git - vlc/blob - projects/macosx/framework/Headers/Public/VLCExtension.h
macosx/framework: Export VLCExtensionsManager and VLCExtension.
[vlc] / projects / macosx / framework / Headers / Public / VLCExtension.h
1 //
2 //  VLCExtension.h
3 //  VLCKit
4 //
5 //  Created by Pierre d'Herbemont on 1/26/10.
6 //  Copyright 2010 __MyCompanyName__. All rights reserved.
7 //
8
9 #import <Cocoa/Cocoa.h>
10
11
12 @interface VLCExtension : NSObject {
13     struct extension_t *_instance;
14 }
15
16 - (id)initWithInstance:(struct extension_t *)instance; // FIXME: Should be internal
17 - (struct extension_t *)instance; // FIXME: Should be internal
18
19 - (NSString *)name;
20 - (NSString *)title;
21 @end