|
@@ -21,7 +21,6 @@
|
|
*****************************************************************************/
|
|
*****************************************************************************/
|
|
|
|
|
|
#import "VLCExtension.h"
|
|
#import "VLCExtension.h"
|
|
-#import <vlc_extensions.h>
|
|
|
|
|
|
|
|
@interface VLCExtension ()
|
|
@interface VLCExtension ()
|
|
{
|
|
{
|
|
@@ -35,6 +34,11 @@
|
|
return [NSString stringWithFormat:@"VLC Extension %@", [self name]];
|
|
return [NSString stringWithFormat:@"VLC Extension %@", [self name]];
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+- (instancetype)init
|
|
|
|
+{
|
|
|
|
+ return [self initWithInstance:NULL];
|
|
|
|
+}
|
|
|
|
+
|
|
- (instancetype)initWithInstance:(struct extension_t *)instance
|
|
- (instancetype)initWithInstance:(struct extension_t *)instance
|
|
{
|
|
{
|
|
self = [super init];
|
|
self = [super init];
|