You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
392 B
14 lines
392 B
package vendor.hardware.hwnxmediaplayerhal@1.0;
|
|
|
|
interface IMediaCallBack
|
|
{
|
|
/**
|
|
*INxMediaPlayer use IMediaCallBack.notify to callback mesg to upper module
|
|
*@param msg messeage type
|
|
*@param ext1 extension messeage type 1
|
|
*@param ext2 extension messeage type 2
|
|
*@param obj messeage
|
|
*/
|
|
oneway Notify(int32_t msg, int32_t ext1, int32_t ext2, string obj);
|
|
};
|