VLCPlexParser.h 719 B

123456789101112131415161718
  1. /*****************************************************************************
  2. * VLCPlexParser.h
  3. * VLC for iOS
  4. *****************************************************************************
  5. * Copyright (c) 2014-2015 VideoLAN. All rights reserved.
  6. *
  7. * Authors: Pierre Sagaspe <pierre.sagaspe # me.com>
  8. *
  9. * Refer to the COPYING file of the official project for license.
  10. *****************************************************************************/
  11. #import <UIKit/UIKit.h>
  12. @interface VLCPlexParser : NSObject
  13. - (NSArray *)PlexMediaServerParser:(NSString *)adress port:(NSString *)port navigationPath:(NSString *)navPath authentification:(NSString *)auth;
  14. - (NSArray *)PlexExtractDeviceInfo:(NSData *)data;
  15. @end