Functions:
GENESISAPI geBoolean geDriver_GetName(geDriver *Driver, const char **Name);
This function returns the name for the specified driver.Returns: GE_TRUE on success.
GENESISAPI geDriver_Mode *geDriver_GetNextMode(geDriver
*Driver, geDriver_Mode *Start);
This function iterates through the list of modes for the specified driver. If *Start == NULL, it starts at the beginning of the list.GENESISAPI geBoolean geDriver_ModeGetName(geDriver_Mode *Mode, const char **Name);Returns: The geDriver_mode *.
This function returns the name for the specified DriverMode.GENESISAPI geBoolean geDriver_ModeGetWidthHeight(geDriver_Mode *Mode, int32 *Width, int32 *Height);Returns: GE_TRUE on success.
This function returns the Width and Height for the specified DriverMode.Returns: GE_TRUE on success.
GENESISAPI geDriver *geDriver_SystemGetNextDriver(geDriver_System
*DriverSystem, geDriver *Start);
This function iterates through the list of driver for the specified DriverSystem. If *Start == NULL, it starts at the beginning of the list.Returns: The geDriver *.