1f424932cfb1b16b01a37500d09e295912700a51dJungshik Jang/*
2f424932cfb1b16b01a37500d09e295912700a51dJungshik Jang * Copyright (C) 2014 The Android Open Source Project
3f424932cfb1b16b01a37500d09e295912700a51dJungshik Jang *
4f424932cfb1b16b01a37500d09e295912700a51dJungshik Jang * Licensed under the Apache License, Version 2.0 (the "License");
5f424932cfb1b16b01a37500d09e295912700a51dJungshik Jang * you may not use this file except in compliance with the License.
6f424932cfb1b16b01a37500d09e295912700a51dJungshik Jang * You may obtain a copy of the License at
7f424932cfb1b16b01a37500d09e295912700a51dJungshik Jang *
8f424932cfb1b16b01a37500d09e295912700a51dJungshik Jang *      http://www.apache.org/licenses/LICENSE-2.0
9f424932cfb1b16b01a37500d09e295912700a51dJungshik Jang *
10f424932cfb1b16b01a37500d09e295912700a51dJungshik Jang * Unless required by applicable law or agreed to in writing, software
11f424932cfb1b16b01a37500d09e295912700a51dJungshik Jang * distributed under the License is distributed on an "AS IS" BASIS,
12f424932cfb1b16b01a37500d09e295912700a51dJungshik Jang * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13f424932cfb1b16b01a37500d09e295912700a51dJungshik Jang * See the License for the specific language governing permissions and
14f424932cfb1b16b01a37500d09e295912700a51dJungshik Jang * limitations under the License.
15f424932cfb1b16b01a37500d09e295912700a51dJungshik Jang */
16f424932cfb1b16b01a37500d09e295912700a51dJungshik Jang
17f424932cfb1b16b01a37500d09e295912700a51dJungshik Jangpackage android.hardware.hdmi;
18f424932cfb1b16b01a37500d09e295912700a51dJungshik Jang
19f424932cfb1b16b01a37500d09e295912700a51dJungshik Jang /**
20b3fbf9dbe8d41d91efbac2118b676af74592257bJinsuk Kim * Callback interface definition for MHL client to get the vendor command.
21f424932cfb1b16b01a37500d09e295912700a51dJungshik Jang *
22f424932cfb1b16b01a37500d09e295912700a51dJungshik Jang * @hide
23f424932cfb1b16b01a37500d09e295912700a51dJungshik Jang */
24b3fbf9dbe8d41d91efbac2118b676af74592257bJinsuk Kim oneway interface IHdmiMhlVendorCommandListener {
25f424932cfb1b16b01a37500d09e295912700a51dJungshik Jang      void onReceived(int portId, int offset, int length, in byte[] data);
26f424932cfb1b16b01a37500d09e295912700a51dJungshik Jang }
27