Difference between revisions of "DBF UNLOCKF()"

From Lianjapedia
Jump to: navigation, search
 
m (1 revision)
(No difference)

Revision as of 05:34, 11 April 2013

PURPOSE

Unlock a file

SYNONYM

api_dbf_unlockf()

SYNOPSIS

#include "lianjaapi.h"
 
int	DBF_UNLOCKF()
 
<input parameters>
none
 
<output parameters>
none

DESCRIPTION

The DBF_UNLOCKF() function will unlock the currently selected table.

EXAMPLE

The following example unlocks the current table.

#include "lianjaapi.h"
 
lianjaapi_dbf_unlock()
{
    int	rc;
 
    rc = DBF_UNLOCKF();
 
    _retl( rc );
}

SEE ALSO

BLOB_UPDATE(), BLOB_WRITE(), DBF_APPEND(), DBF_DELETE(), DBF_ISEXCLUSIVE(), DBF_ISREADONLY(), DBF_LOCKF(), DBF_LOCKR(), DBF_RECALL(), DBF_UNLOCKR(), DBF_UPDATE(), FIELD_UPDATE(), MEMO_UPDATE(), MEMO_WRITE()