/* * Copyright 2016 (c) Anna Schumaker. */ #ifndef OCARINA_CORE_PLAYLISTS_LIBRARY_H #define OCARINA_CORE_PLAYLISTS_LIBRARY_H #include /* Library playlist type. */ extern struct playlist_type pl_library; /* Called to initialize library playlists. */ void pl_library_init(struct queue_ops *); /* Called to deinitialize system playlists. */ void pl_library_deinit(); #endif /* OCARINA_CORE_PLAYLISTS_LIBRARY_H */