NW_EA_FF_STRUCT

Maintains state information when scanning an extended attribute file

Service:Extended Attribute
Defined In:nwea.h

Structure

  typedef struct 
  { 
     NWCONN_HANDLE   connID ; 
     nuint16         nextKeyOffset ; 
     nuint16         nextKey ; 
     nuint32         numKeysRead ; 
     nuint32         totalKeys ; 
     nuint32         EAHandle ; 
     nuint16         sequence ; 
     nuint16         numKeysInBuffer ; 
     nuint8          enumBuffer [512]; 
  } NW_EA_FF_STRUCT;
  

Delphi Structure

  uses calwin32 
   
  NW_EA_FF_STRUCT = packed Record 
      connID : NWCONN_HANDLE;  
      nextKeyOffset : nuint16;  
      nextKey : nuint16;  
      numKeysRead : nuint32;  
      totalKeys : nuint32;  
      EAHandle : nuint32;  
      sequence : nuint16;  
      numKeysInBuffer : nuint16;  
      enumBuffer : Array[0..511] Of nuint8 
    End;
  

Fields

connID
Specifies a connection to the server storing the Extended Attribute.
nextKeyOffset
Specifies a value that the server uses as part of an internal handle.
nextKey
Specifies a value that the server uses as part of an internal handle.
numKeysRead
Specifies the number of keys that have been read from the extended attribute file.
totalKeys
Specifies the total number of keys in the extended attribute file.
EAHandle
Specifies the handle for the current key.
sequence
Specifies the current key number.
numKeysInBuffer
Specifies the number of keys in the current buffer.
enumBuffer
Specifies the current buffer containing keys read from the extended attribute file.

Remarks

NW_EA_FF_STRUCT is an internal handle for library use only. Applications must not modify this structure in any way.