MLMediaLibrary+playlist.h 979 B

123456789101112131415161718192021222324252627282930
  1. /*****************************************************************************
  2. * MLMediaLibrary+playlist.h
  3. * VLC for iOS
  4. *****************************************************************************
  5. * Copyright (c) 2015 VideoLAN. All rights reserved.
  6. * $Id$
  7. *
  8. * Authors: Tobias Conradi <videolan # tobias-conradi.de>
  9. * Carola Nitz <caro # videolan.org>
  10. * Felix Paul Kühne <fkuehne # videolan.org>
  11. *
  12. * Refer to the COPYING file of the official project for license.
  13. *****************************************************************************/
  14. #import <MediaLibraryKit/MLMediaLibrary.h>
  15. typedef NS_ENUM(NSUInteger, VLCLibraryMode) {
  16. VLCLibraryModeNone = 0,
  17. VLCLibraryModeAllFiles,
  18. VLCLibraryModeAllAlbums,
  19. VLCLibraryModeAllSeries,
  20. };
  21. @interface MLMediaLibrary (playlist)
  22. - (nonnull NSArray *)playlistArrayForGroupObject:(nonnull id)groupObject;
  23. - (nonnull NSArray *)playlistArrayForLibraryMode:(VLCLibraryMode)libraryMode;
  24. @end