Performs termination processing of driver. This function supports multi-process.
Ret = AioExit ( Id )
Id
[ VB.NET : Short ] [ C, C++ : short ] [ C# : short ] [ Python : ctypes.c_short
]
Specifies the device ID retrieved from AioInit.
Ret [ VB.NET : Integer ] [ C, C++ : long ] [ C# : int ] [ Python : ctypes.c_long ]
Return values |
Content |
0 |
Normality completion |
10001 |
Invalid
Id was specified |
10002 |
AIO
driver can't be called |
This function is performed as application
terminates.
If an application terminates without performing this function, the sequent
accesses to the device may fail.
If the device is in operation, the operation
stops.
Releases all memory and threads used by the driver.
After this function is performed, device cannot be accessed until AioInit
function is performed.
Performs termination processing of driver.
VB.NET |
Dim
Ret As Integer |
C, C++ |
long
Ret; |
C# |
int
Ret; |
Python |
Ret
= ctypes.c_long() |