meiDriveMapConfigList
Declaration
|
long meiDriveMapConfigList (MEIDriveMap driveMap,
char *nodeName,
char *firmwareVersion,
long configCount,
long *configList);
|
|
Required Header: stdmei.h |
Description
meiDriveMapConfigList scans the drive map file for a drive entry that matches a particular drive. If an entry is found, this function returns the list of drive parameters that need to be preserved for the configuration of the drive.
This function is normally used with the meiDriveMapConfigCount(...) function. The meiDriveMapConfigCount function is called first in order to get the size of the drive configuration list. Then the user can use this size as a guide to allocate enough memory to hold the complete configuration list before calling this function to fill in the list.
|
driveMap |
a handle to a DriveMap object. |
*nodeName |
the product/manufacturing text string of the node to search for. The nodeName of an SqNode object can be retreived by calling meiSqNodeInfo. See MEISqNodeInfo. |
*firmwareVersion |
The firmware version of the drive to search for. This information can be retrieved from an SqNode object by calling meiSqNodeDriveInfo. See MEISqNodeDriveInfo. |
configCount |
the number of drive parameter information records that can be written to the configList list. |
*configList |
pointer to the list of drive parameters that make up the drive configuration that will be filled in by this function. |
|
|
|
|
|
See Also
meiDriveMapConfigCount
|