mirror of
https://github.com/librespot-org/librespot.git
synced 2024-12-18 17:11:53 +00:00
17 lines
409 B
Protocol Buffer
17 lines
409 B
Protocol Buffer
// Extracted from: Spotify 1.2.52.442 (windows)
|
|
|
|
syntax = "proto2";
|
|
|
|
package spotify.player.context_view.proto;
|
|
|
|
import "context_track.proto";
|
|
import "context_view_cyclic_list.proto";
|
|
|
|
option optimize_for = CODE_SIZE;
|
|
|
|
message ContextView {
|
|
map<string, player.proto.ContextTrack> patch_map = 1;
|
|
optional uint32 iteration_size = 2;
|
|
optional cyclic_list.proto.CyclicEntryKeyList cyclic_list = 3;
|
|
}
|
|
|