MLMediaLibrary+playlist.h 969 B

1234567891011121314151617181920212223242526272829
  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. typedef enum {
  15. VLCLibraryModeAllFiles = 0,
  16. VLCLibraryModeAllAlbums = 1,
  17. VLCLibraryModeAllSeries = 2,
  18. VLCLibraryModeCreateFolder = 3,
  19. VLCLibraryModeFolder = 4
  20. } VLCLibraryMode;
  21. @interface MLMediaLibrary (playlist)
  22. - (nonnull NSArray *)playlistArrayForGroupObject:(nonnull id)groupObject;
  23. - (nonnull NSArray *)playlistArrayForLibraryMode:(VLCLibraryMode)libraryMode;
  24. @end