ProSoft Technology MVI69-ADM User Manual

Page 204

Advertising
background image

Backplane API Functions

MVI-ADM ♦ 'C' Programmable

Developer's Guide

'C' Programmable Application Development Module

Page 204 of 342

ProSoft Technology, Inc.

February 20, 2013

MVIbp_Close

Syntax

int MVIbp_Close(MVIHANDLE handle);

Parameters

handle

Handle returned by previous call to MVIbp_Open

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

handle must be a valid handle returned from MVIbp_Open.

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

Return Value

MVI_SUCCESS

API was closed successfully

MVI_ERR_NOACCESS

handle does not have access

Example

MVIHANDLE Handle;
MVIbp_Close(Handle);

See Also
MVIbp_Open (page 203)

Advertising