Shamrock: fix 9.0.15 crash

This commit is contained in:
ikechan8370 2024-01-20 14:56:29 +08:00
parent 48b720bdd7
commit 0c91028469
3 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,4 @@
package com.tencent.qqnt.kernel.nativeinterface;
public enum GuildMsgAbFlag {
}

View File

@ -44,6 +44,8 @@ public interface IKernelMsgListener {
void onGuildInteractiveUpdate(GuildInteractiveNotificationItem guildInteractiveNotificationItem); void onGuildInteractiveUpdate(GuildInteractiveNotificationItem guildInteractiveNotificationItem);
void onGuildMsgAbFlagChanged(GuildMsgAbFlag guildMsgAbFlag);
void onGuildNotificationAbstractUpdate(GuildNotificationAbstractInfo guildNotificationAbstractInfo); void onGuildNotificationAbstractUpdate(GuildNotificationAbstractInfo guildNotificationAbstractInfo);
void onHitCsRelatedEmojiResult(DownloadRelateEmojiResultInfo downloadRelateEmojiResultInfo); void onHitCsRelatedEmojiResult(DownloadRelateEmojiResultInfo downloadRelateEmojiResultInfo);

View File

@ -424,6 +424,9 @@ internal object AioListener : IKernelMsgListener {
} }
override fun onGuildMsgAbFlagChanged(guildMsgAbFlag: GuildMsgAbFlag?) {
}
override fun onGuildNotificationAbstractUpdate(guildNotificationAbstractInfo: GuildNotificationAbstractInfo?) { override fun onGuildNotificationAbstractUpdate(guildNotificationAbstractInfo: GuildNotificationAbstractInfo?) {
} }