endian11
2020-01-06 ff1a9ee1a086f31c3a9d0a7b261eae7f200e8b2c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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();
}