Share via


FSDMGR_RegisterVolume (Compact 2013)

3/26/2014

This function is called by a file system driver (FSD) to register a volume on a disk.

Syntax

HVOL FSDMGR_RegisterVolume( 
  HDSK hDsk, 
  PWSTR pwsName, 
  PVOLUME pVolume
);

Parameters

  • hDsk
    [in] Handle to the disk. This is the same value passed to the FSD_MountDisk function.
  • pwsName
    [in] Pointer to the string that contains the volume name. Set to NULL for the default name.
  • pVolume
    [out] Pointer to the volume-specific data defined by an FSD.

Return Value

The volume identifier indicates success. NULL indicates failure.

Requirements

Header

fsdmgr.h

Library

Fsdmgr.lib

See Also

Reference

FSDMGR Functions
FSD Functions
FSD_MountDisk