Difference between revisions of "DBF UNLOCKF()"

From Lianjapedia
Jump to: navigation, search
 
m (Text replace - "lianjaapi.h" to "lianja_api.h")
 
(One intermediate revision by the same user not shown)
Line 7: Line 7:
 
==SYNOPSIS==
 
==SYNOPSIS==
 
<code lang="c">
 
<code lang="c">
#include "lianjaapi.h"
+
#include "lianja_api.h"
  
 
int DBF_UNLOCKF()
 
int DBF_UNLOCKF()
Line 25: Line 25:
  
 
<code lang="c">
 
<code lang="c">
#include "lianjaapi.h"
+
#include "lianja_api.h"
  
 
lianjaapi_dbf_unlock()
 
lianjaapi_dbf_unlock()

Latest revision as of 06:09, 11 April 2013

PURPOSE

Unlock a file

SYNONYM

api_dbf_unlockf()

SYNOPSIS

#include "lianja_api.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 "lianja_api.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()