blob: 1268f2ec0b4c0380f2e8f51e260c8c0ebd5746d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package com.android.internal.telephony;
import android.app.PendingIntent;
interface ISmsMiddleware {
boolean onSendText(in String destAddr, in String scAddr, in String text,
in PendingIntent sentIntent, in PendingIntent deliveryIntent);
boolean onSendMultipartText(in String destinationAddress, in String scAddress,
in List<String> parts, in List<PendingIntent> sentIntents,
in List<PendingIntent> deliveryIntents);
}
|