NWFSE_LOCK_INFO

Returns Server Environment locking information. Used by NWGetServerConnInfo.

Service:Server Environment
Defined In:nwfse.h

Structure

  typedef struct 
  { 
     nuint8    logicalLockThreshold; 
     nuint8    recordLockThreshold; 
     nuint16   fileLockCount; 
     nuint16   recordLockCount; 
  } NWFSE_LOCK_INFO;
  

Delphi Syntax

  uses calwin32 
  	
    NWFSE_LOCK_INFO = packed RECORD
      logicalLockThreshold : nuint8;
      recordLockThreshold  : nuint8;
      fileLockCount        : nuint16;
      recordLockCount      : nuint16;
    End;
  

Fields

logicalLockThreshold
Specifies the maximum number of logical locks a user can have.
recordLockThreshold
Specifies the maximum number of record locks the user can have.
fileLockCount
Specifies the number of files the user locked.
recordLockCount
Specifies the number of records the user locked.