16 lines
290 B
C++
16 lines
290 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace td {
|
|
namespace utils {
|
|
|
|
void InitDiscordRPC();
|
|
void UpdateDiscordRPC();
|
|
void ShutdownDiscordRPC();
|
|
|
|
void UpdateDiscordPresence(const std::string& state, const std::string& details, bool resetTimer = false);
|
|
|
|
} // namespace utils
|
|
} // namespace td
|