Object_Info_T

Contains information used to maintain objects.

Service:NDS
Defined In:nwdsbuft.h and nwdsbuft.inc

Structure

C

  typedef struct 
  { 
     nuint32   objectFlags ; 
     nuint32   subordinateCount ; 
     time_t    modificationTime ; 
     char      baseClass [MAX_SCHEMA_NAME_BYTES+2]; 
  } Object_Info_T;
  

Pascal

  Object_Info_T = Record 
     objectFlags : nuint32; 
     subordinateCount : nuint32; 
     modificationTime : time_t; 
     baseClass : Array [0..MAX_SCHEMA_NAME_BYTES+1] Of char; 
  End;
  

Fields

objectFlags

Specifies the object's entry flags (see Section 5.12, DSI_ENTRY_FLAGS Values).

subordinateCount

Specifies the number of objects subordinates to the object.

modificationTime

Specifies the time when the object was last modified.

baseClass

Specifies the object class used to create the object.