Merge pull request #14424 from Simonx22/android/wii-update-callback-kotlin

Android: Convert WiiUpdateCallback to Kotlin
This commit is contained in:
JMC47 2026-03-12 15:25:05 -04:00 committed by GitHub
commit 6257823caf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 10 additions and 11 deletions

View File

@ -1,11 +0,0 @@
// SPDX-License-Identifier: GPL-2.0-or-later
package org.dolphinemu.dolphinemu.utils;
import androidx.annotation.Keep;
public interface WiiUpdateCallback
{
@Keep
boolean run(int processed, int total, long titleId);
}

View File

@ -0,0 +1,10 @@
// SPDX-License-Identifier: GPL-2.0-or-later
package org.dolphinemu.dolphinemu.utils
import androidx.annotation.Keep
@Keep
fun interface WiiUpdateCallback {
fun run(processed: Int, total: Int, titleId: Long): Boolean
}