CArclib::ArcHelpBuildRaidSetMap

The ArcHelpBuildRaidSetMap method enumerates raidsets that exists in the raid subsystem.

 

ARC_STATUS ArcHelpBuildRaidSetMap(sRAID_MAP *raidMap);

Parameters:

[OUT]

raidMap: Pointer to sRAID_MAP structure that receives the information.

 

typedef struct _RAID_MAP

{

    int total;

    struct

    {

        DWORD raidindex;

        sGUI_RAIDSET raidInfo;

    }raid[128];

}sRAID_MAP, *pRAID_MAP;

 

      total

             Number of raidsets found.

      raidindex

             The index of raidset, this can be used as an index to delete or modify a raidset.

raidInfo

             Pointer to sGUI_RAIDSET that receives the raidset information

 

Return Values

This method returns the ARC_STATUS.

Note: