aboutsummaryrefslogtreecommitdiff
path: root/steamworks-sys
diff options
context:
space:
mode:
authorFlaise <[email protected]>2019-09-01 15:51:44 -0500
committerFlaise <[email protected]>2019-09-01 15:51:44 -0500
commit248986d2a67cd23a88658d473ae8f5cae7d9663d (patch)
tree2c8739e0208be551e962e93c17623224468b6430 /steamworks-sys
parentSteamError is Copy and Clone, adjusted callback type constraints (diff)
downloadsteamworks-rs-248986d2a67cd23a88658d473ae8f5cae7d9663d.tar.xz
steamworks-rs-248986d2a67cd23a88658d473ae8f5cae7d9663d.zip
Binding for SetLobbyJoinable, FriendState derivations, small documentation adjustments
Diffstat (limited to 'steamworks-sys')
-rw-r--r--steamworks-sys/src/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/steamworks-sys/src/lib.rs b/steamworks-sys/src/lib.rs
index 18d8ecf..c15b77b 100644
--- a/steamworks-sys/src/lib.rs
+++ b/steamworks-sys/src/lib.rs
@@ -141,6 +141,7 @@ extern "C" {
pub fn SteamAPI_ISteamMatchmaking_GetLobbyOwner(instance: *mut ISteamMatchmaking, lobby: CSteamID) -> CSteamID;
pub fn SteamAPI_ISteamMatchmaking_GetNumLobbyMembers(instance: *mut ISteamMatchmaking, lobby: CSteamID) -> c_int;
pub fn SteamAPI_ISteamMatchmaking_GetLobbyMemberByIndex(instance: *mut ISteamMatchmaking, lobby: CSteamID, member: c_int) -> CSteamID;
+ pub fn SteamAPI_ISteamMatchmaking_SetLobbyJoinable(instance: *mut ISteamMatchmaking, lobby: CSteamID, lobbyJoinable: bool) -> u8;
pub fn SteamAPI_ISteamNetworking_AcceptP2PSessionWithUser(instance: *mut ISteamNetworking, remote: CSteamID) -> u8;
pub fn SteamAPI_ISteamNetworking_CloseP2PSessionWithUser(instance: *mut ISteamNetworking, remote: CSteamID) -> u8;