Skip to content

Commit

Permalink
fix(voip/mumble): Add correct return types to MUMBLE_DOES_CHANNEL_EXIST
Browse files Browse the repository at this point in the history
  • Loading branch information
niekschoemaker committed Aug 17, 2024
1 parent b1d2a85 commit 7fcb6b7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ext/native-decls/MumbleDoesChannelExist.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,13 @@ apiset: client
## MUMBLE_DOES_CHANNEL_EXIST

```c
void MUMBLE_DOES_CHANNEL_EXIST(int channel);
BOOL MUMBLE_DOES_CHANNEL_EXIST(int channel);
```
Check whether specified channel exists on the Mumble server.
## Parameters
* **channel**: A game voice channel ID.
## Return value
True if the specific channel exists. False otherwise.

0 comments on commit 7fcb6b7

Please sign in to comment.