mirror of
https://github.com/ZuneDev/ZuneShell.dll.git
synced 2026-07-27 13:11:51 -07:00
45 lines
1.4 KiB
C#
45 lines
1.4 KiB
C#
public enum EQueryType
|
|
{
|
|
eQueryTypeArtistsRanking = 39,
|
|
eQueryTypeAllApps = 38,
|
|
eQueryTypePinsByPinType = 37,
|
|
eQueryTypeFilesByTrackId = 36,
|
|
eQueryTypeVideoSeriesTitles = 35,
|
|
eQueryTypePersonsByTypeId = 34,
|
|
eQueryTypeTracksForTOC = 33,
|
|
eQueryTypeUserCards = 0x20,
|
|
eQueryTypeAlbumsByGenreId = 0x1F,
|
|
eQueryTypeTracksByGenreId = 30,
|
|
eQueryTypeAllGenres = 29,
|
|
eQueryTypePlaylistContentByPlaylistId = 28,
|
|
eQueryTypeAllPlaylists = 27,
|
|
eQueryTypeSyncProgress = 26,
|
|
eQueryTypeVideosByCategoryId = 25,
|
|
eQueryTypeVideosByFolderId = 24,
|
|
eQueryTypePhotosByFolderId = 23,
|
|
eQueryTypeMediaFolders = 22,
|
|
eQueryTypeVideoWithKeyword = 21,
|
|
eQueryTypeSubscriptionsEpisodesWithKeyword = 20,
|
|
eQueryTypeSubscriptionsSeriesWithKeyword = 19,
|
|
eQueryTypePhotosWithKeyword = 18,
|
|
eQueryTypePlaylistsWithKeyword = 17,
|
|
eQueryTypeArtistsWithKeyword = 0x10,
|
|
eQueryTypeTracksWithKeyword = 0xF,
|
|
eQueryTypeAlbumsWithKeyword = 14,
|
|
eQueryTypeAlbumsByTOC = 13,
|
|
eQueryTypeEpisodesForSeriesId = 12,
|
|
eQueryTypeTracksForAlbumArtistId = 11,
|
|
eQueryTypeTracksForAlbumId = 10,
|
|
eQueryTypeAlbumsForAlbumArtistId = 9,
|
|
eQueryTypeAllPodcastEpisodes = 8,
|
|
eQueryTypeAllPodcastSeries = 7,
|
|
eQueryTypeAllAlbumArtists = 6,
|
|
eQueryTypeAllAlbums = 5,
|
|
eQueryTypeAllPhotos = 4,
|
|
eQueryTypeAllVideosDetailed = 3,
|
|
eQueryTypeAllVideos = 2,
|
|
eQueryTypeAllTracksDetailed = 1,
|
|
eQueryTypeAllTracks = 0,
|
|
eQueryTypeInvalid = -1
|
|
}
|