Platform SDK: Removable Storage Manager |
The MountNtmsMedia function synchronously mounts one or more pieces of media.
DWORD WINAPI MountNtmsMedia( HANDLE hSession, LPNTMS_GUID lpMediaId, LPNTMS_GUID lpDriveId, DWORD dwCount, DWORD dwOptions, DWORD dwPriority, DWORD dwTimeout, LPNTMS_MOUNT_INFORMATION lpMountInformation );
Value | Meaning |
---|---|
NTMS_MOUNT_SPECIFIC_DRIVE | Mount the media into the specific drives provided in the lpDriveId parameter. |
NTMS_MOUNT_READ | Mount the media for read access. Use this value to mount read-only media. |
NTMS_MOUNT_WRITE | Mount the media for write access. Use this flag to prevent RSM from mounting Completed media. This value can be combined with NTMS_MOUNT_READ for read/write access.
RSM cannot mount Completed media if this flag is selected. |
NTMS_MOUNT_ERROR_NOT_AVAILABLE | This value returns an error if the media or a drive is not available. |
NTMS_MOUNT_ERROR_OFFLINE | Do not issue an operator request to mount offline media. Return an error if the media specified is not currently in an online library. |
Value | Meaning |
---|---|
NTMS_PRIORITY_NORMAL | Mounts that are not time critical. |
NTMS_PRIORITY_LOW | Mounts performed as a background activity. |
NTMS_PRIORITY_HIGH | Mounts that are time critical. |
NTMS_PRIORITY_LOWEST | Lowest priority mount. |
NTMS_PRIORITY_HIGHEST | Highest priority mount. |
Value | Meaning |
---|---|
ERROR_ACCESS_DENIED | NTMS_USE_ACCESS to the media pool or library that contains the media is denied; other security errors are also possible but they would indicate a security subsystem error. |
ERROR_BUSY | The media or drives are busy. |
ERROR_CANCELED | The request was canceled by the CloseNtmsSession function. |
ERROR_DATABASE_FAILURE | The database is inaccessible or damaged. |
ERROR_DATABASE_FULL | The database is full. |
ERROR_DRIVE_MEDIA_MISMATCH | The media and drive specified are not in the same library. |
ERROR_INVALID_DRIVE | At least one of the specified drives is not valid. |
ERROR_INVALID_LIBRARY | The library that contains the drives or media is not valid. |
ERROR_INVALID_MEDIA | One or more of the media specified is not valid, or there are duplicate media IDs in list of media. |
ERROR_INVALID_STATE | An unexpected media or device state occurred during mount. |
ERROR_MEDIA_OFFLINE | The media is offline and cannot be mounted. |
ERROR_NOT_ENOUGH_MEMORY | A memory allocation failure occurred during processing. |
ERROR_REQUEST_REFUSED | The user canceled the request through the user interface. |
ERROR_RESOURCE_DISABLED | One or more resources required to perform the mount are disabled. |
ERROR_SUCCESS | The media has been mounted and is ready for use. |
ERROR_TIMEOUT | The time-out event expired while attempting to acquire one or more required resources. The mount request has been canceled. |
ERROR_WRITE_PROTECT | The media state is set to Completed and the NTMS_MOUNT_WRITE value was specified. |
The MountNtmsMedia function queues a request to mount the specified media, then waits for the number of milliseconds specified in the dwTimeout parameter for the mount to complete or for an error to be detected. If RSM cannot complete the mount operation before dwTimeout expires, NTMS cancels the request and returns an error. If the specified media is in an offline library, the application might be blocked for an extended period of time. You can use the GetNtmsObjectInformation function to determine the current location of the specified medium. You can also use the NTMS_MOUNT_ERROR_OFFLINE value to generate an immediate error instead of an operator request when the media is offline.
If the specified medium is in use or a drive is not available, the process blocks up to the time-out value and returns ERROR_BUSY. If the NTMS_MOUNT_ERROR_NOT_AVAILABLE value is specified, the function returns an immediate error when a resource (media or drive) is not available.
The time-out value of INFINITE can be used to make the function wait without timing out. When a non-zero time-out value is specified in the dwTimeout parameter, RSM waits for all the media specified in lpMediaId to become mounted. If the specified time elapses before all the media is mounted, the MountNtmsMedia function returns an error and cancels the request. The application can examine the status returned and resubmit the request if desired.
When multiple media to be mounted are specified with a single call, all the specified media must be in a single library. If any of the specified media are offline, none of the media will be mounted until all the media are online.
At the completion of the mount the drive state (for example, fix or variable mode) is not defined. The application must set up the drive.
The CloseNtmsSession function can be used to cancel a mount that is pending. The default behavior is:
If the specified medium is offline, RSM posts an operator request to mount the media and the MountNtmsMedia function waits for the period of time specified in the dwTimeout parameter.
If the specified medium is online, RSM requests the mount.
If a drive or media is not available, RSM sends the request and the MountNtmsMedia function waits for the period of time specified in the dwTimeout parameter.
Windows NT/2000: Requires Windows 2000.
Header: Declared in Ntmsapi.h.
Library: Use Ntmsapi.lib.