CArclib::ArcHelpBuildVolumeSetMap

The ArcHelpBuildVolumeSetMap method enumerates volumesets that exists in the raid subsystem.

 

ARC_STATUS ArcHelpBuildVolumeSetMap(sVOL_MAP *volMap);

Parameters:

[OUT]

volMap: Pointer to sVOL_MAP structure that receives the information.

 

typedef struct _VOL_MAP

{

    int total;

    struct

    {

        DWORD volindex;

        sGUI_VOLUMESET volInfo;

    }vol[128];

}sVOL_MAP, *pVOL_MAP;

 

      total

             Number of volumesets found.

      volindex

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

volInfo

             Pointer to sGUI_VOLUMESET that receives the volumeset information

 

Return Values

This method returns the ARC_STATUS.

Note: