加入收藏
举报
02-14 20:02
#0
文件名称:
HdfDriverEntry.md
所在目录:
Openharmony v1.0 / docs / api / api-SmartVision-Devices
文件大小:
8.73 KB
下载地址:
fenwii/OpenHarmony
   
免责声明:本网站仅提供指向 GitHub 上的文件的链接,所有文件的版权归原作者所有,本网站不对文件内容的合法性、准确性或安全性承担任何责任。
文本预览:
# HdfDriverEntry
## **Overview**
**Related Modules:**
[Core](Core.md)
**Description:**
Defines the entry structure of the driver in the HDF.
This structure must be used as the entry for the driver to use the HDF mechanism.
**Since:**
1.0
## **Summary**
## Data Fields





















Variable Name


Description


moduleVersion


int32_t 


moduleName


const char * 


Bind )(struct HdfDeviceObject *deviceObject)


int32_t(* 


Binds the external service interface of a driver to the HDF. This function is implemented by the driver developer and called by the HDF.


Init )(struct HdfDeviceObject *deviceObject)


int32_t(* 


Initializes the driver. This function is implemented by the driver developer and called by the HDF.


Release )(struct HdfDeviceObject *deviceObject)


void(* 


Releases driver resources. This function is implemented by the driver developer. When an exception occurs during driver loading or the driver is uninstalled, the HDF calls this function to release the driver resources.



## **Details**
## **Field Documentation**
## Bind
```
int32_t(* HdfDriverEntry::Bind) (struct [HdfDeviceObject](HdfDeviceObject.md) *deviceObject)
```
**Description:**
Binds the external service interface of a driver to the HDF. This function is implemented by the driver developer and called by the HDF.
**Parameters:**









Name


Description


deviceObject Indicates the pointer to the variable of the HdfDeviceObject type. This variable is generated by the HDF and passed to the driver. Then, the service object of the driver is bound to the service parameter of deviceObject.

**Returns:**
Returns **0** if the operation is successful; returns a non-zero value otherwise.
## Init
```
int32_t(* HdfDriverEntry::Init) (struct [HdfDeviceObject](HdfDeviceObject.md) *deviceObject)
```
**Description:**
Initializes the driver. This function is implemented by the driver developer and called by the HDF.
**Parameters:**









Name


Description


deviceObject Indicates the pointer to the variable of the HdfDeviceObject type. It is the same as the parameter of Bind.

**Returns:**
Returns **0** if the operation is successful; returns a non-zero value otherwise.
## moduleName
```
const char* HdfDriverEntry::moduleName
```
**Description:**
Driver module name, which is used to match the driver information in the configuration file.
## moduleVersion
```
int32_t HdfDriverEntry::moduleVersion
```
**Description:**
Driver version
## Release
```
void(* HdfDriverEntry::Release) (struct [HdfDeviceObject](HdfDeviceObject.md) *deviceObject)
```
**Description:**
Releases driver resources. This function is implemented by the driver developer. When an exception occurs during driver loading or the driver is uninstalled, the HDF calls this function to release the driver resources.
**Parameters:**









Name


Description


deviceObject Indicates the pointer to the variable of the HdfDeviceObject type. It is the same as the parameter of Bind.
点赞 回复
回帖
支持markdown部分语法 ?