Init commit

This commit is contained in:
世界
2023-06-27 11:51:36 +08:00
commit 7736e1e644
121 changed files with 6295 additions and 0 deletions
@@ -0,0 +1,9 @@
package io.nekohasekai.sfa.aidl;
import io.nekohasekai.sfa.aidl.IServiceCallback;
interface IService {
int getStatus();
void registerCallback(in IServiceCallback callback);
oneway void unregisterCallback(in IServiceCallback callback);
}
@@ -0,0 +1,8 @@
package io.nekohasekai.sfa.aidl;
interface IServiceCallback {
void onServiceStatusChanged(int status);
void onServiceAlert(int type, String message);
void onServiceWriteLog(String message);
void onServiceResetLogs(in List<String> messages);
}