123456789101112131415161718192021222324252627282930 |
- /*****************************************************************************
- * MLMediaLibrary+playlist.h
- * VLC for iOS
- *****************************************************************************
- * Copyright (c) 2015 VideoLAN. All rights reserved.
- * $Id$
- *
- * Authors: Tobias Conradi <videolan # tobias-conradi.de>
- * Carola Nitz <caro # videolan.org>
- * Felix Paul Kühne <fkuehne # videolan.org>
- *
- * Refer to the COPYING file of the official project for license.
- *****************************************************************************/
- #import <MediaLibraryKit/MLMediaLibrary.h>
- typedef NS_ENUM(NSUInteger, VLCLibraryMode) {
- VLCLibraryModeNone = 0,
- VLCLibraryModeAllFiles,
- VLCLibraryModeAllAlbums,
- VLCLibraryModeAllSeries,
- };
- @interface MLMediaLibrary (playlist)
- - (nonnull NSArray *)playlistArrayForGroupObject:(nonnull id)groupObject;
- - (nonnull NSArray *)playlistArrayForLibraryMode:(VLCLibraryMode)libraryMode;
- @end
|