VLCSharedLibraryParser.h 688 B

12345678910111213141516171819
  1. /*****************************************************************************
  2. * VLCSharedLibraryParser.h
  3. * VLC for iOS
  4. *****************************************************************************
  5. * Copyright (c) 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 VLCSharedLibraryParser : NSObject
  13. - (NSMutableArray *)VLCLibraryServerParser:(NSString *)adress port:(NSString *)port;
  14. - (BOOL)isVLCMediaServer:(NSString *)adress port:(NSString *)port;
  15. @end