ProSoft Technology MVI69-ADM User Manual

Page 271

Advertising
background image

MVI-ADM ♦ 'C' Programmable

CIP Messaging Library Functions

'C' Programmable Application Development Module

Developer's Guide

ProSoft Technology, Inc.

Page 271 of 342

February 20, 2013

MVIcip_Close

Syntax

int MVIcip_Close(MVIHANDLE handle);

Parameters

handle

handle returned by previous call to MVIcip_Open

Description
This function is used by an application to release control of the CIP API.

handle must be a valid handle returned from MVIcip_Open.

Return Value

MVI_SUCCESS

API was closed successfully

MVI_ERR_NOACCESS

handle does not have access

Example

MVIHANDLE handle;
MVIcip_Close (handle);

See Also
MVIcip_Open (page 270)

After the CIP API has been opened, this function should always be called before
exiting the application.

Advertising