FSDMGR_RegisterVolume (Windows Embedded CE 6.0)

1/6/2010

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
Windows Embedded CE Windows CE 2.10 and later

See Also

Reference

FSDMGR Functions
FSD Functions
FSD_MountDisk