NWSMDismountVolumeByName

Dismounts a volume on a selected server

NetWare Server:3.x, 4.x, 5.x, 6.x
Platform:NLM, Windows NT, Windows 95, Windows 98
Library:Cross-Platform NetWare Calls (CAL*.*)
Service:Server Management

Syntax

  #include <nwsm.h> 
  or 
  #include <nwcalls.h> 
   
  N_EXTERN_LIBRARY NWCCODE NWSMDismountVolumeByName (
     NWCONN_HANDLE        connHandle,  
     const nstr8 N_FAR   *volumeName); 
  

Delphi Syntax

  uses calwin32 
   
  Function NWSMDismountVolumeByName 
    (connHandle : NWCONN_HANDLE; 
     volumeName : pnstr8 
  ) : NWCCODE; 
  

Parameters

connHandle
(IN) Specifies the server connection handle which is being managed.
volumeName
(IN) Points to the NULL-terminated name of the NetWare volume to dismount.

Return Values

These are common return values; see Return Values (NDK: Connection, Message, and NCP Extensions)for more information.

0x0000

SUCCESS

0x00BF

Invalid volumeName string passed

0x0204

Unable to dismount specified volume name

0x8801

INVALID_CONNECTION

0x890A

NLM_INVALID_CONNECTION

0x8998

VOLUME_DOES_NOT_EXIST

0x89FB

ERR_NCP_NOT_SUPPORTED

Remarks

You must be logged into connHandle, be permanently authenticated, and have console operator rights at the minimum to call NWSMDismountVolumeByName.

NCP Calls

See Also

NWSMMountVolume