NW_EA_HANDLE

Defines information associated with the extended attribute handle

Service:Extended Attribute
Defined In:nwea.h

Structure

  typedef struct 
  { 
     NWCONN_HANDLE   connID ; 
     nuint32         rwPosition ; 
     nuint32         EAHandle ; 
     nuint32         volNumber ; 
     nuint32         dirBase ; 
     nuint8          keyUsed ; 
     nuint16         keyLength ; 
     nuint8          key [256]; 
  } NW_EA_HANDLE;
  

Delphi Structure

  uses calwin32 
   
  NW_EA_HANDLE = packed Record 
      connID : NWCONN_HANDLE;  
      rwPosition : nuint32;  
      EAHandle : nuint32;  
      volNumber : nuint32;  
      dirBase : nuint32;  
      keyUsed : nuint8;  
      keyLength : nuint16;  
      key : Array[0..255] Of nuint8 
    End;
  

Fields

connID
Specifies the server storing the Extended Attribute.
rwPosition
Specifies the current position within the Extended Attribute file.
EAHandle
Specifies the handle to the Extended Attribute file.
volNumber
Specifies the volume storing the Extended Attribute file.
dirBase
Specifies the directory base associated with the Extended Attribute file.
keyUsed
Specifies the key used to access the Extended Attribute.
keyLength
Specifies the length of the key parameter.
key
Specifies the Extended Attribute key.

Remarks

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