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.
21 lines
580 B
21 lines
580 B
/*
|
|
* Copyright (c) Hisilicon Technologies Co., Ltd. 2012-2019. All rights reserved.
|
|
* Description: interface for the IPlugin callback class.
|
|
* Author: DTV stack software group
|
|
* Create: 2012-09-18
|
|
*/
|
|
#ifndef DTV_PLUGIN_CALLBACK_H
|
|
#define DTV_PLUGIN_CALLBACK_H
|
|
|
|
#include <binder/Parcel.h>
|
|
#include "svr_type.h"
|
|
|
|
class IPluginCallback {
|
|
public:
|
|
virtual ~IPluginCallback(){};
|
|
virtual android::status_t notify(SVR_S32 msg, SVR_S32 ext1, SVR_S32 ext2, SVR_S32 ext3,
|
|
const android::Parcel *parcelObj, android::Parcel *parcelOut) = 0;
|
|
};
|
|
|
|
#endif // DTV_CALLBACK_H
|