|
544 | 544 | "examples": "",
|
545 | 545 | "name": "steam.matchmaking_request_lobby_list",
|
546 | 546 | "parameters": [],
|
547 |
| - "returnvalues": [], |
| 547 | + "returnvalues": [ |
| 548 | + { |
| 549 | + "doc": "Id", |
| 550 | + "name": "string" |
| 551 | + } |
| 552 | + ], |
548 | 553 | "type": "FUNCTION"
|
549 | 554 | },
|
550 | 555 | {
|
|
581 | 586 | ]
|
582 | 587 | }
|
583 | 588 | ],
|
584 |
| - "returnvalues": [], |
| 589 | + "returnvalues": [ |
| 590 | + { |
| 591 | + "doc": "Id", |
| 592 | + "name": "string" |
| 593 | + } |
| 594 | + ], |
585 | 595 | "type": "FUNCTION"
|
586 | 596 | },
|
587 | 597 | {
|
|
670 | 680 | ],
|
671 | 681 | "type": "FUNCTION"
|
672 | 682 | },
|
| 683 | + { |
| 684 | + "description": "Send message", |
| 685 | + "examples": "", |
| 686 | + "name": "steam.networking_send_message_to_user", |
| 687 | + "parameters": [ |
| 688 | + { |
| 689 | + "doc": "", |
| 690 | + "name": "identity_remote", |
| 691 | + "types": [ |
| 692 | + "string" |
| 693 | + ] |
| 694 | + }, |
| 695 | + { |
| 696 | + "doc": "", |
| 697 | + "name": "data", |
| 698 | + "types": [ |
| 699 | + "string" |
| 700 | + ] |
| 701 | + }, |
| 702 | + { |
| 703 | + "doc": "A bitmask of k_nSteamNetworkingSend_xxx options", |
| 704 | + "name": "send_flags", |
| 705 | + "types": [ |
| 706 | + "number" |
| 707 | + ] |
| 708 | + }, |
| 709 | + { |
| 710 | + "doc": "A routing number you can use to help route message to different systems", |
| 711 | + "name": "remote_channel", |
| 712 | + "types": [ |
| 713 | + "number" |
| 714 | + ] |
| 715 | + } |
| 716 | + ], |
| 717 | + "returnvalues": [], |
| 718 | + "type": "FUNCTION" |
| 719 | + }, |
| 720 | + { |
| 721 | + "description": "Receive message", |
| 722 | + "examples": "", |
| 723 | + "name": "steam.networking_receive_messages_on_channel", |
| 724 | + "parameters": [ |
| 725 | + { |
| 726 | + "doc": "", |
| 727 | + "name": "localChannel", |
| 728 | + "types": [ |
| 729 | + "number" |
| 730 | + ] |
| 731 | + } |
| 732 | + ], |
| 733 | + "returnvalues": [ |
| 734 | + { |
| 735 | + "doc": "", |
| 736 | + "name": "table" |
| 737 | + } |
| 738 | + ], |
| 739 | + "type": "FUNCTION" |
| 740 | + }, |
| 741 | + { |
| 742 | + "description": "Accept session Call this in response to a SteamNetworkingMessagesSessionRequest_t callback. pending or otherwise. If there is an existing active session, this function will return true, even if it is not pending.", |
| 743 | + "examples": "", |
| 744 | + "name": "steam.networking_accept_session_with_user", |
| 745 | + "parameters": [ |
| 746 | + { |
| 747 | + "doc": "", |
| 748 | + "name": "identity_remote", |
| 749 | + "types": [ |
| 750 | + "string" |
| 751 | + ] |
| 752 | + } |
| 753 | + ], |
| 754 | + "returnvalues": [ |
| 755 | + { |
| 756 | + "doc": "Returns false if there is no session with the user", |
| 757 | + "name": "boolean" |
| 758 | + } |
| 759 | + ], |
| 760 | + "type": "FUNCTION" |
| 761 | + }, |
| 762 | + { |
| 763 | + "description": "Close sesssion Call this when you're done talking to a user to immediately free up resources under-the-hood", |
| 764 | + "examples": "", |
| 765 | + "name": "steam.networking_close_session_with_user", |
| 766 | + "parameters": [ |
| 767 | + { |
| 768 | + "doc": "", |
| 769 | + "name": "identity_remote", |
| 770 | + "types": [ |
| 771 | + "string" |
| 772 | + ] |
| 773 | + } |
| 774 | + ], |
| 775 | + "returnvalues": [ |
| 776 | + { |
| 777 | + "doc": "", |
| 778 | + "name": "boolean" |
| 779 | + } |
| 780 | + ], |
| 781 | + "type": "FUNCTION" |
| 782 | + }, |
| 783 | + { |
| 784 | + "description": "Close channel Call this when you're done talking to a user on a specific channel.", |
| 785 | + "examples": "", |
| 786 | + "name": "steam.networking_close_channel_with_user", |
| 787 | + "parameters": [ |
| 788 | + { |
| 789 | + "doc": "", |
| 790 | + "name": "identity_remote", |
| 791 | + "types": [ |
| 792 | + "string" |
| 793 | + ] |
| 794 | + }, |
| 795 | + { |
| 796 | + "doc": "", |
| 797 | + "name": "local_channel", |
| 798 | + "types": [ |
| 799 | + "number" |
| 800 | + ] |
| 801 | + } |
| 802 | + ], |
| 803 | + "returnvalues": [ |
| 804 | + { |
| 805 | + "doc": "", |
| 806 | + "name": "boolean" |
| 807 | + } |
| 808 | + ], |
| 809 | + "type": "FUNCTION" |
| 810 | + }, |
| 811 | + { |
| 812 | + "description": "Get connection info Returns information about the latest state of a connection, if any, with the given peer.", |
| 813 | + "examples": "", |
| 814 | + "name": "steam.networking_get_session_connection_info", |
| 815 | + "parameters": [ |
| 816 | + { |
| 817 | + "doc": "", |
| 818 | + "name": "identity_remote", |
| 819 | + "types": [ |
| 820 | + "string" |
| 821 | + ] |
| 822 | + } |
| 823 | + ], |
| 824 | + "returnvalues": [ |
| 825 | + { |
| 826 | + "doc": "Connection info (state, info, status)", |
| 827 | + "name": "table" |
| 828 | + } |
| 829 | + ], |
| 830 | + "type": "FUNCTION" |
| 831 | + }, |
673 | 832 | {
|
674 | 833 | "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.",
|
675 | 834 | "examples": "",
|
|
914 | 1073 | ],
|
915 | 1074 | "type": "FUNCTION"
|
916 | 1075 | },
|
917 |
| - { |
918 |
| - "description": "Ask the server to send down this user's data and achievements for this game.", |
919 |
| - "examples": "", |
920 |
| - "name": "steam.user_stats_request_current_stats", |
921 |
| - "parameters": [], |
922 |
| - "returnvalues": [ |
923 |
| - { |
924 |
| - "doc": "True if successful", |
925 |
| - "name": "Boolean" |
926 |
| - } |
927 |
| - ], |
928 |
| - "type": "FUNCTION" |
929 |
| - }, |
930 | 1076 | {
|
931 | 1077 | "description": "Requests global stats data, which is available for stats marked as "aggregated". This call is asynchronous, with the results returned in GlobalStatsReceived_t. nHistoryDays specifies how many days of day-by-day history to retrieve in addition to the overall totals. The limit is 60.",
|
932 | 1078 | "examples": "",
|
|
0 commit comments