Concord - C Discord API library
A Discord API wrapper library written in C
sticker.h
Go to the documentation of this file.
1
7#ifndef DISCORD_STICKER_H
8#define DISCORD_STICKER_H
9
24 u64snowflake sticker_id,
25 struct discord_ret_sticker *ret);
26
35 struct discord *client,
37
49 u64snowflake guild_id,
50 struct discord_ret_stickers *ret);
51
64 u64snowflake guild_id,
65 u64snowflake sticker_id,
66 struct discord_ret_sticker *ret);
67
80 struct discord *client,
81 u64snowflake guild_id,
82 u64snowflake sticker_id,
83 struct discord_modify_guild_sticker *params,
84 struct discord_ret_sticker *ret);
85
97 u64snowflake guild_id,
98 u64snowflake sticker_id,
99 struct discord_ret *ret);
100
103#endif /* DISCORD_STICKER_H */
CCORDcode
Definition: error.h:12
uint64_t u64snowflake
Snowflake datatype.
Definition: types.h:28
CCORDcode discord_list_guild_stickers(struct discord *client, u64snowflake guild_id, struct discord_ret_stickers *ret)
Get stickers for the given guild.
CCORDcode discord_get_sticker(struct discord *client, u64snowflake sticker_id, struct discord_ret_sticker *ret)
Get a sticker from a given ID.
CCORDcode discord_list_nitro_sticker_packs(struct discord *client, struct discord_ret_list_nitro_sticker_packs *ret)
Get a list of sticker packs available to Nitro subscribers.
CCORDcode discord_modify_guild_sticker(struct discord *client, u64snowflake guild_id, u64snowflake sticker_id, struct discord_modify_guild_sticker *params, struct discord_ret_sticker *ret)
Modify the given sticker.
CCORDcode discord_get_guild_sticker(struct discord *client, u64snowflake guild_id, u64snowflake sticker_id, struct discord_ret_sticker *ret)
Get a sticker for the given guild and sticker ID.
CCORDcode discord_delete_guild_sticker(struct discord *client, u64snowflake guild_id, u64snowflake sticker_id, struct discord_ret *ret)
Delete the given sticker.
Definition: sticker.h:135
Request's return context.
Definition: discord-response.h:145
Request's return context.
Definition: discord-response.h:143
Request's return context.
Definition: discord-response.h:144
Request's return context.
Definition: discord-response.h:54
The Discord client handler.
Definition: discord-internal.h:1190