ZmExit


Function

It is exit processing, and make the device cannot be accessed.

Format

Ret = ZmExit ( Id )

Parameters

Id [ VB.NET: Short ] [ C, C++: short ] [ C#: short ]
Specify the device ID retrieved from ZmInit.

Return Value

Ret [ VB.NET: Integer ] [ C, C++: long ] [ C#: int ]

Definition

Value
[Dec]

Description

ZM_ERR_SUCCESS

0

Normality completion

ZM_ERR_DLL_INVALID_ID

10001

Invalid ID was specified.

ZM_ERR_DLL_CALL_DRIVER

10002

Driver can't be called (Failed in the device I/O control).

ZM_ERR_DLL_CLOSE_FILE

10004

Failed in the closing of the file (Failed in CloseFile).

The others (See also: Details of Error Code)

Initial Value

None

Remarks

Make the device ID retrieved from ZmInit invalid, and the device cannot be accessed.
After calling this function, only ZmInit and ZmGetErrorString can be used.

Example

Perform termination processing.

VB.NET

Dim Ret As Integer
Ret = ZmExit ( Id )
 

C, C++

long Ret;
Ret = ZmExit ( Id );
 

C#

int Ret;
Ret = zm.Exit ( Id );
 

See Also

ZmInit ZmGetErrorString