typedef struct tagRuntimeInfo
{
	// The number of bytes in this structure.
	unsigned long structSize;

	// The total number of bytes used by the database.
	unsigned long totalBytes;

	// The total number of objects in the database.
	unsigned long totalObjects;

	// The number of bytes allocated by objects.
	unsigned long usedBytes;

	// The number of blocks used by objects.
	unsigned long usedChunks;

	// The number of free bytes.
	unsigned long freeBytes;

	// The number of free blocks.
	unsigned long freeChunks;

	// The number of catalog entries.
	unsigned long catalogEntries;

} RuntimeInfo;
		

This type defines the return type of GetRuntimeInfo()