Contains information used to maintain objects.
typedef struct
{
nuint32 objectFlags ;
nuint32 subordinateCount ;
time_t modificationTime ;
char baseClass [MAX_SCHEMA_NAME_BYTES+2];
} Object_Info_T;
Object_Info_T = Record
objectFlags : nuint32;
subordinateCount : nuint32;
modificationTime : time_t;
baseClass : Array [0..MAX_SCHEMA_NAME_BYTES+1] Of char;
End;
Specifies the object's entry flags (see Section 5.12, DSI_ENTRY_FLAGS Values).
Specifies the number of objects subordinates to the object.
Specifies the time when the object was last modified.
Specifies the object class used to create the object.