ProSoft Technology MVI69-ADM User Manual

Page 170

Advertising
background image

Application Development Function Library - ADM API

MVI-ADM ♦ 'C' Programmable

Developer's Guide

'C' Programmable Application Development Module

Page 170 of 342

ProSoft Technology, Inc.

February 20, 2013

ADM_BtClose

Syntax

int ADM_BtClose(ADMHANDLE adm_handle, ADM_INTERFACE * adm_interface_ptr)

Parameters

adm_handle

Handle returned by previous call to ADM_Open

adm_interface_ptr

Pointer to ADM_INTERFACE structure to allow API access to
structures

Description
This function closes the backplane interface.

Return Value

ADM_SUCCESS

No errors were encountered

ADM_ERR_NOACCESS

adm_handle does not have access

Example

ADMHANDLE adm_handle;
ADM_INTERFACE *interface_ptr;
ADM_INTERFACE interface;
interface_ptr = &interface;
ADM_BtClose(adm_handle, interface_ptr);

See Also
ADM_BtOpen (page 169)

Advertising