HOLDS_STATUS

Stores a list of holds placed on an account

Service:Accounting
Defined In:nwacct.h

Structure

   typedef struct 
   { 
      nuint16      holdsCount ; 
      HOLDS_INFO   holds [16]; 
   } HOLDS_STATUS; 
   
   

Pascal Structure

   uses calwin32 
    
   HOLDS_STATUS = packed Record 
         holdsCount : nuint16; 
         holds : Array[0..15] Of HOLDS_INFO 
      End; 
   
   

Defined In

nwacct.h

Fields

holdsCount
Specifies the number of NW_HOLDS in holds array.
holds
Specifies a list of servers calling NWSubmitAccountHold against an object and the amount reserved by each value-added server.