ICinemaSMC.aidl 418 Bytes
// ICinemaSMC.aidl
package com.xgimi.gimicinema;

// Declare any non-default types here with import statements

interface ICinemaSMC {
    /**
     * Demonstrates some basic types that you can use as parameters
     * and return values in AIDL.
     */
    void basicTypes(int anInt, long aLong, boolean aBoolean, float aFloat,
            double aDouble, String aString);

    boolean open();

    boolean close();
}