Skip to content

Commit 71aa7af

Browse files
Site changes [skip-ci]
1 parent 544e5bb commit 71aa7af

File tree

1 file changed

+113
-0
lines changed

1 file changed

+113
-0
lines changed

_data/extensions/extension-steam_steam.json

Lines changed: 113 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -829,6 +829,119 @@
829829
],
830830
"type": "FUNCTION"
831831
},
832+
{
833+
"description": "Share a file",
834+
"examples": "",
835+
"name": "steam.remote_storage_file_share",
836+
"parameters": [
837+
{
838+
"doc": "Name of file to share",
839+
"name": "filename",
840+
"types": [
841+
"string"
842+
]
843+
}
844+
],
845+
"returnvalues": [
846+
{
847+
"doc": "Id",
848+
"name": "string"
849+
}
850+
],
851+
"type": "FUNCTION"
852+
},
853+
{
854+
"description": "Get number of uploaded files",
855+
"examples": "",
856+
"name": "steam.remote_storage_get_file_count",
857+
"parameters": [],
858+
"returnvalues": [
859+
{
860+
"doc": "Count",
861+
"name": "number"
862+
}
863+
],
864+
"type": "FUNCTION"
865+
},
866+
{
867+
"description": "Get file information",
868+
"examples": "",
869+
"name": "steam.remote_storage_get_file_name_and_size",
870+
"parameters": [],
871+
"returnvalues": [
872+
{
873+
"doc": "Count",
874+
"name": "number"
875+
}
876+
],
877+
"type": "FUNCTION"
878+
},
879+
{
880+
"description": "Get storage quota",
881+
"examples": "",
882+
"name": "steam.remote_storage_get_quota",
883+
"parameters": [],
884+
"returnvalues": [
885+
{
886+
"doc": "Bytes",
887+
"name": "number"
888+
},
889+
{
890+
"doc": "Bytes",
891+
"name": "number"
892+
}
893+
],
894+
"type": "FUNCTION"
895+
},
896+
{
897+
"description": "Creates a new file, writes the bytes to the file, and then closes the file. If the target file already exists, it is overwritten.",
898+
"examples": "",
899+
"name": "steam.remote_storage_file_write",
900+
"parameters": [
901+
{
902+
"doc": "The name of the file to write to.",
903+
"name": "filename",
904+
"types": [
905+
"string"
906+
]
907+
},
908+
{
909+
"doc": "",
910+
"name": "data",
911+
"types": [
912+
"string"
913+
]
914+
}
915+
],
916+
"returnvalues": [
917+
{
918+
"doc": "",
919+
"name": "boolean"
920+
}
921+
],
922+
"type": "FUNCTION"
923+
},
924+
{
925+
"description": "Opens a binary file, reads the contents of the file into a byte array, And then closes the file.",
926+
"examples": "",
927+
"name": "steam.remote_storage_file_read",
928+
"parameters": [
929+
{
930+
"doc": "Name of the file to read from",
931+
"name": "filename",
932+
"types": [
933+
"string"
934+
]
935+
}
936+
],
937+
"returnvalues": [
938+
{
939+
"doc": "",
940+
"name": "string"
941+
}
942+
],
943+
"type": "FUNCTION"
944+
},
832945
{
833946
"description": "Returns the CSteamID of the account currently logged into the Steam client. A CSteamID is a unique identifier for an account, and used to differentiate users in all parts of the Steamworks API.",
834947
"examples": "",

0 commit comments

Comments
 (0)