-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathipc_cmd.h
36 lines (29 loc) · 896 Bytes
/
ipc_cmd.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#pragma once
enum TuneIpcCmd {
TuneIpcCmd_GetStatus = 0,
TuneIpcCmd_Play = 1,
TuneIpcCmd_Pause = 2,
TuneIpcCmd_Next = 3,
TuneIpcCmd_Prev = 4,
TuneIpcCmd_GetVolume = 10,
TuneIpcCmd_SetVolume = 11,
TuneIpcCmd_GetTitleVolume = 12,
TuneIpcCmd_SetTitleVolume = 13,
TuneIpcCmd_GetDefaultTitleVolume = 14,
TuneIpcCmd_SetDefaultTitleVolume = 15,
TuneIpcCmd_GetRepeatMode = 20,
TuneIpcCmd_SetRepeatMode = 21,
TuneIpcCmd_GetShuffleMode = 22,
TuneIpcCmd_SetShuffleMode = 23,
TuneIpcCmd_GetPlaylistSize = 30,
TuneIpcCmd_GetPlaylistItem = 31,
TuneIpcCmd_GetCurrentQueueItem = 32,
TuneIpcCmd_ClearQueue = 33,
TuneIpcCmd_MoveQueueItem = 34,
TuneIpcCmd_Select = 35,
TuneIpcCmd_Seek = 36,
TuneIpcCmd_Enqueue = 40,
TuneIpcCmd_Remove = 41,
TuneIpcCmd_QuitServer = 50,
TuneIpcCmd_GetApiVersion = 5000,
};