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.
17 lines
400 B
17 lines
400 B
/*
|
|
* Copyright (c) Hisilicon Technologies Co., Ltd. 2012-2020. All rights reserved.
|
|
* Description:
|
|
* Author:
|
|
* create:
|
|
*/
|
|
|
|
package vendor.huanglong.hardware.hwtvmw@1.0;
|
|
|
|
import IHwtvmwCallback;
|
|
|
|
interface IHwtvmw {
|
|
hwInvoke(string request) generates (string ret);
|
|
hwRegistCallback(IHwtvmwCallback callback) generates (int32_t ret);
|
|
getCapBuffer(uint32_t id) generates (memory buffer);
|
|
};
|