39 lines
1.4 KiB
Plaintext
39 lines
1.4 KiB
Plaintext
/*
|
|
* Copyright 2019 HIMSA II K/S - www.himsa.dk. Represented by EHIMA - www.ehima.com.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package android.bluetooth;
|
|
|
|
import java.util.Map;
|
|
|
|
import com.mediatek.bt.BluetoothMcsSearchRequest;
|
|
import com.mediatek.bt.BluetoothMcsMediaControlRequest;
|
|
|
|
|
|
/**
|
|
* @hide
|
|
*/
|
|
interface IBluetoothMcs {
|
|
oneway void updatePlaybackState(in int state);
|
|
oneway void updatePlayerState(in Map state_fields);
|
|
oneway void updateObjectID(in int obj_field, in long object_id);
|
|
oneway void setMediaControlRequestResult(in BluetoothMcsMediaControlRequest request,
|
|
in int result_status);
|
|
oneway void setSearchRequestResult(in BluetoothMcsSearchRequest request, in int result_status,
|
|
in long result_object_id);
|
|
int getCcid();
|
|
oneway void destroy();
|
|
}
|