Init and exit processing are common processing that are necessary for all programming.
Init processing is performed by function ZmInit.
This function creates the driver file and allocates the necessary memory.
There are 2 parameters in function ZmInit.
The first parameter is DeviceName.
DeviceName is a character string such as "ZM000" which is registered in Device Manager or the utility.
The second parameter is ID.
ID is a number passed from driver, and this ID is required to use the following functions.
If function terminates normally, the return value (Ret) is 0.
If function execution failed, a value other than 0 is returned.
Exit processing is performed by function ZmExit.
This function stops device and driver operations and releases all used resources such as memory and threads.
Please make sure to execute this function before terminating application.
Otherwise, resources used by the driver may remain unreleased.
Perform the init and exit processing for device "ZM000"
Visual Basic .NET
Dim Ret As Integer
Dim Id As Short
Ret = ZmInit( "ZM000"
, Id )
If Ret <> 0 Then
System.Diagnostics.Debug.WriteLine("Error occurred in ZmInit " & Ret)
End If
Ret = ZmExit( Id )
If Ret <> 0 Then
System.Diagnostics.Debug.WriteLine("Error occurred in ZmExit " & Ret)
End If
Visual C#
int Ret;
short Id;
Ret = zm.Init ( "ZM000"
, out Id );
if(Ret != 0){
System.Diagnostics.Debug.WriteLine("Error occurred in ZmInit " + Ret.ToString());
}
Ret = zm.Exit ( Id );
if(Ret != 0){
System.Diagnostics.Debug.WriteLine("Error occurred in ZmExit " + Ret.ToString());
}
Visual C++ (MFC)
long Ret;
short Id;
Ret = ZmInit( "ZM000"
, &Id );
if(Ret != 0){
printf("Error occurred in ZmInit %d\n", Ret);
}
Ret = ZmExit( Id );
if(Ret != 0){
printf("Error occurred in ZmExit %d\n", Ret);
}