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
|
|
@ -31,6 +31,20 @@ message CSteamEngine_GetGameIDForPID_Response {
|
|||
optional uint64 gameid = 1;
|
||||
}
|
||||
|
||||
message CSteamEngine_SetOverlayEscapeKeyHandling_Notification {
|
||||
required uint64 gameid = 1;
|
||||
required bool should_handle = 2;
|
||||
}
|
||||
|
||||
message CSteamEngine_SearchAppDataCacheByStoreKeywords_Request {
|
||||
optional string search_term = 1;
|
||||
optional uint32 max_results = 2;
|
||||
}
|
||||
|
||||
message CSteamEngine_SearchAppDataCacheByStoreKeywords_Response {
|
||||
repeated uint32 appids = 1;
|
||||
}
|
||||
|
||||
service SteamEngine {
|
||||
option (webui_service_execution_site) = k_EClientExecutionSiteClientdll;
|
||||
|
||||
|
|
@ -38,4 +52,6 @@ service SteamEngine {
|
|||
rpc GetTextFilterDictionary (.CSteamEngine_GetTextFilterDictionary_Request) returns (.CSteamEngine_GetTextFilterDictionary_Response);
|
||||
rpc NotifyTextFilterDictionaryChanged (.CSteamEngine_TextFilterDictionaryChanged_Notification) returns (.WebUINoResponse);
|
||||
rpc GetGameIDForPID (.CSteamEngine_GetGameIDForPID_Request) returns (.CSteamEngine_GetGameIDForPID_Response);
|
||||
rpc SetOverlayEscapeKeyHandling (.CSteamEngine_SetOverlayEscapeKeyHandling_Notification) returns (.WebUINoResponse);
|
||||
rpc SearchAppDataCacheByStoreKeywords (.CSteamEngine_SearchAppDataCacheByStoreKeywords_Request) returns (.CSteamEngine_SearchAppDataCacheByStoreKeywords_Response);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue