VLCExtension.h 441 B

1234567891011121314151617181920212223
  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. #import <Cocoa/Cocoa.h>
  9. @interface VLCExtension : NSObject {
  10. struct extension_t *_instance;
  11. }
  12. - (id)initWithInstance:(struct extension_t *)instance; // FIXME: Should be internal
  13. - (struct extension_t *)instance; // FIXME: Should be internal
  14. - (NSString *)name;
  15. - (NSString *)title;
  16. @end