Contains data associated with debug events.
typedef struct EVT_DebugInfo {
unsigned int dsTime;
unsigned int milliseconds;
char *perpetratorDN;
char *formatString;
int verb;
int paramCount;
DB_Parameter *parameters;
};
Specifies the time the event occurred as the number of seconds elapsed since midnight (00:00:00), January 1, 1970, coordinated universal time, according to the system clock.
The millisecond portion of the time the event occurred.
The DN of the object that caused this event.
The format string used to create the string printed in the DS Trace utility. The format string describes the string that is displayed by the DS Trace utility. It contains literal characters as well as format characters that serve as place holder for parameter values. See the remarks for a list of valid format characters.
The ID of the ds verb that was executing when the event occurred.
The number of parameters specified in the format string.
A pointer to an array containing paramCount DB_Parameter structures. The parameters are in the same order as the parameter characters in the format string.
The formatString parameter is formatted according to the following:
%[flags][width][.precision][L,l,h,!]type