diff options
| author | InvoxiPlayGames <webmaster@invoxiplaygames.uk> | 2022-08-03 05:46:11 +0100 |
|---|---|---|
| committer | InvoxiPlayGames <webmaster@invoxiplaygames.uk> | 2022-08-06 07:32:29 +0100 |
| commit | f9e39cf2004295fa3129646880690424a796e676 (patch) | |
| tree | b8e4b8b162b770c845bca4c64d43ce7f1865fe8d /Source/Android/jni/MainAndroid.cpp | |
| parent | 7d2d5d914bf3cacbecbb0bf8a642b616744aad54 (diff) | |
Add Discord presence ioctlv to /dev/dolphin
Diffstat (limited to 'Source/Android/jni/MainAndroid.cpp')
| -rw-r--r-- | Source/Android/jni/MainAndroid.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Source/Android/jni/MainAndroid.cpp b/Source/Android/jni/MainAndroid.cpp index 5a871ec041..49bf596571 100644 --- a/Source/Android/jni/MainAndroid.cpp +++ b/Source/Android/jni/MainAndroid.cpp @@ -131,6 +131,21 @@ void Host_UpdateTitle(const std::string& title) __android_log_write(ANDROID_LOG_INFO, DOLPHIN_TAG, title.c_str()); } +void Host_UpdateDiscordClientID(const std::string& client_id) +{ +} + +bool Host_UpdateDiscordPresenceRaw(const std::string& details, const std::string& state, + const std::string& large_image_key, + const std::string& large_image_text, + const std::string& small_image_key, + const std::string& small_image_text, + const int64_t start_timestamp, const int64_t end_timestamp, + const int party_size, const int party_max) +{ + return false; +} + void Host_UpdateDisasmDialog() { } |
