mirror of
https://codeberg.org/steam-vent/proto.git
synced 2026-08-02 12:14:48 +02:00
initial import from steam-vent repo
This commit is contained in:
commit
d936a6049b
237 changed files with 607341 additions and 0 deletions
26
steam/protos/webuimessages_systemmanager.proto
Normal file
26
steam/protos/webuimessages_systemmanager.proto
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
import "steammessages_base.proto";
|
||||
import "webuimessages_base.proto";
|
||||
|
||||
option optimize_for = SPEED;
|
||||
option cc_generic_services = true;
|
||||
|
||||
message CSystemManager_Hibernate_Request {
|
||||
}
|
||||
|
||||
message CSystemManager_Hibernate_Response {
|
||||
}
|
||||
|
||||
message CSystemManager_WriteFile_Request {
|
||||
optional string path = 1;
|
||||
optional bytes data = 2;
|
||||
}
|
||||
|
||||
message CSystemManager_WriteFile_Response {
|
||||
}
|
||||
|
||||
service SystemManager {
|
||||
option (webui_service_execution_site) = k_EClientExecutionSiteClientdll;
|
||||
|
||||
rpc Hibernate (.CSystemManager_Hibernate_Request) returns (.CSystemManager_Hibernate_Response);
|
||||
rpc WriteFile (.CSystemManager_WriteFile_Request) returns (.CSystemManager_WriteFile_Response);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue