ProSoft Technology MVI69E-LDM User Manual
Page 70

Contents
MVI69E-LDM ♦ "C" Programmable
Developer's Manual
Linux Application Development Module
Page 70 of 130
ProSoft Technology, Inc.
August 21, 2014
MVI69_Close
Syntax
int MVI69_Close(MVI69HANDLE handle);
Parameters
handle
handle returned by previous call to MVI69_Open or
MVI69_OpenNB
Description
This function is used by an application to release control of the API.
handle must be a valid handle returned from
MVI69_Open
or
MVI69_OpenNB.
IMPORTANT: Once the API has been opened, this function should always be called before exiting the
application.
Return Value
MVI69_SUCCESS
API was closed successfully
MVI69_ERR_NOACCESS
handle does not have access
Example
MVI69HANDLE handle;
MVI69_Close (handle);
See Also
MVI69_OpenNB
MVI69_Open
After the CIP API has been opened, this function should always be called before exiting the
application.