// IRemoteInterface.aidl
|
package com.anyun.exam.lib;
|
import com.anyun.exam.lib.IListenerInterface;
|
|
// Declare any non-default types here with import statements
|
|
interface IRemoteInterface {
|
/**
|
* Demonstrates some basic types that you can use as parameters
|
* and return values in AIDL.
|
*/
|
|
void registListener(IListenerInterface i);
|
void unRegistListener(IListenerInterface i);
|
void add();
|
void SendCmd(int cmd, String value);
|
}
|