mirror of
https://codeberg.org/steam-vent/proto.git
synced 2026-08-02 12:14:48 +02:00
Update to latest proto definitions from SteamDatabase/Protobufs
From commit 085746bbf6b48d1b89b7a63e7876932793f4c08f
This commit is contained in:
parent
d936a6049b
commit
9946f23749
127 changed files with 40662 additions and 28630 deletions
38
steam/protos/webuimessages_sleep.proto
Normal file
38
steam/protos/webuimessages_sleep.proto
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
import "enums.proto";
|
||||
import "steammessages_base.proto";
|
||||
import "webuimessages_base.proto";
|
||||
|
||||
option optimize_for = SPEED;
|
||||
option cc_generic_services = true;
|
||||
|
||||
message CMsgSleepManagerState {
|
||||
}
|
||||
|
||||
message CSleepManager_GetState_Request {
|
||||
}
|
||||
|
||||
message CSleepManager_GetState_Response {
|
||||
optional .CMsgSleepManagerState state = 1;
|
||||
}
|
||||
|
||||
message CSleepManager_StateChanged_Notification {
|
||||
}
|
||||
|
||||
message CSleepManager_RequestSuspend_Notification {
|
||||
}
|
||||
|
||||
message CSleepManager_ResumeFromSuspend_Notification {
|
||||
}
|
||||
|
||||
message CSleepManager_ShowPowerMenu_Notification {
|
||||
}
|
||||
|
||||
service SleepManager {
|
||||
option (webui_service_execution_site) = k_EClientExecutionSiteSteamUI;
|
||||
|
||||
rpc GetState (.CSleepManager_GetState_Request) returns (.CSleepManager_GetState_Response);
|
||||
rpc NotifyStateChanged (.CSleepManager_StateChanged_Notification) returns (.WebUINoResponse);
|
||||
rpc NotifyRequestSuspend (.CSleepManager_RequestSuspend_Notification) returns (.WebUINoResponse);
|
||||
rpc NotifyResumeFromSuspend (.CSleepManager_ResumeFromSuspend_Notification) returns (.WebUINoResponse);
|
||||
rpc NotifyShowPowerMenu (.CSleepManager_ShowPowerMenu_Notification) returns (.WebUINoResponse);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue