Returns information about the Data Migrator NLM on a NetWare volume
#include <nwmigrat.h>
or
#include <nwcalls.h>
NWCCODE N_API NWGetDMVolumeInfo (
NWCONN_HANDLE conn,
nuint16 volume,
nuint32 supportModuleID,
pnuint32 numberOfFilesMigrated,
pnuint32 totalMigratedSize,
pnuint32 spaceUsedOnDM,
pnuint32 limboSpaceUsedOnDM,
pnuint32 spaceMigrated,
pnuint32 filesInLimbo);
uses calwin32
Function NWGetDMVolumeInfo
(conn : NWCONN_HANDLE;
volume : nuint16;
supportModuleID : nuint32;
numberOfFilesMigrated : pnuint32;
totalMigratedSize : pnuint32;
spaceUsedOnDM : pnuint32;
limboSpaceUsedOnDM : pnuint32;
spaceMigrated : pnuint32;
filesInLimbo : pnuint32
) : NWCCODE;
(IN) Specifies the NetWare server connection handle.
(IN) Specifies the volume number having the migrated files.
(IN) Specifies the currently supported module ID.
(OUT) Points to the migrated number of files from the selected volume.
(OUT) Points to the total number of bytes needed to recover all the data on the selected volume.
(OUT) Points to the size of the data on the migrator media.
(OUT) Points to the size of the demigrated data on the migrator area. Since the data is generally Read Only, the file will be kept on the migrator until the file is either deleted or remigrated with changes.
(OUT) Points to the total size of the migrated data for the volume (includes the limbo space used).
(OUT) Points to the number of files that are in limbo or were demigrated with SAVE_KEY_WHEN_FILE_IS_DEMIGRATED and have not been migrated back to the data migrator.
These are common return values; see Return Values for C for more information.