test build

This commit is contained in:
2026-08-27 20:14:05 +02:00
parent 6a007c2cd8
commit 80a413efdc
56 changed files with 24520 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
/**
* @file voice.h
* @author Cogmasters
* @brief Voice public functions and datatypes
*/
#ifndef DISCORD_VOICE_H
#define DISCORD_VOICE_H
/** @defgroup DiscordAPIVoice Voice
* @ingroup DiscordAPI
* @brief Voice's public API supported by Concord
* @{ */
/**
* @brief Get voice regions that can be used when setting a
* voice or stage channel's `rtc_region`
*
* @param client the client created with discord_from_token()
* @CCORD_ret_obj{ret,voice_regions}
* @CCORD_return
*/
CCORDcode discord_list_voice_regions(struct discord *client,
struct discord_ret_voice_regions *ret);
/** @example voice.c
* Demonstrates a couple use cases of the Voice API */
/** @} DiscordAPIVoice */
#endif /* DISCORD_VOICE_H */