ProSoft Technology MVI69-ADM User Manual
Page 142
Advertising

Application Development Function Library - ADM API
MVI-ADM ♦ 'C' Programmable
Developer's Guide
'C' Programmable Application Development Module
Page 142 of 342
ProSoft Technology, Inc.
February 20, 2013
ADM_DBGetLong
Syntax
long ADM_DBGetLong(ADMHANDLE adm_handle, unsigned short offset)
Parameters
adm_handle
Handle returned by previous call to ADM_Open
offset
Long int offset into database
Description
This function reads a long int from the database at a specified long int offset.
adm_handle must be a valid handle returned from ADM_Open.
Return Value
Requested long int
Example
ADMHANDLE adm_handle;
unsigned short offset;
long l;
l = ADM_DBGetLong(adm_handle, offset);
See Also
ADM_DBSetLong (page 143)
Advertising