Share via


LoadFSD (Windows CE 5.0)

Send Feedback

This function is called by a device driver to load its associated FSD. This function is obsolete in Windows CE .NET 4.0 and later. Instead, place a storage class identifier in the device driver registry setting to notify the Storage Manager of the block driver being loaded. The Storage Manager will then parse the partitions and load the appropriate file system.

BOOL LoadFSD(HANDLEhDevice,LPCWSTRlpFSDName);

Parameters

  • hDevice
    [in] Handle to a registered device, obtained when a block device driver is called with the IOCTL DISK_IOCTL_INITIALIZED.
  • lpFSDName
    [in] Pointer to the name of the FSD to load.

Return Values

TRUE indicates success. FALSE indicates failure.

Remarks

LoadFSD is called by a block device driver to load an FSD. For example, the block device driver Atadisk.dll loads the FSD Fatfs.dll.

Requirements

OS Versions: Windows CE 2.10 and later.
Header: Winbase.h.
Link Library: Coredll.lib.

See Also

Storage Manager

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.