mpiDriveMapFileName
Declaration
MPI_RESULT mpiDriveMapFileName(MPIDriveMap driveMap, const char **fileName);
Required Header: drivemap.h
Change History: Added in 04.00.
Description
mpiDriveMapFileName writes the name of the drive map file into the string pointed to by **fileName. The fileName is the same as specified when creating the driveMap object with mpiDriveMapCreate(…).
driveMap | A handle to a driveMap object. |
---|---|
**filename | A pointer to a string containing the drive map's file name. |
Sample Code
const char *driveMapFile; MPIDriveMap driveMap = MPIHandleVOID; returnValue = mpiDriveMapCreate(&driveMap, "kollmogen_cd.dm"); if (returnValue == MPIMessageOK) { mpiDriveMapFileName(drivemap, &driveMapFile); }