3455d10a4a
and unified encrypted and unencrypted file attachment
10 lines
212 B
Java
10 lines
212 B
Java
package eu.siacs.conversations.ui;
|
|
|
|
import android.app.PendingIntent;
|
|
|
|
public interface UiCallback {
|
|
public void success();
|
|
public void error(int errorCode);
|
|
public void userInputRequried(PendingIntent pi);
|
|
}
|