FSDMGR_GetRegistryString

This function is called by the FSD to read a string value from the registry. It is a helper function provided so that the FSD does not need to know the actual registry key that was used to invoke it.

BOOL FSDMGR_GetRegistryString(
  HDSK hDsk,
  PCTSTR szValueName,
  PTSTR szValue,
  DWORD dwSize
);

Parameters

  • hDsk
    [in] Handle to the disk, though not a true Microsoft Win32 handle.
  • szValueName
    [in] Name of the value to retrieve.
  • szValue
    [out] Retrieved value.
  • dwSize
    [out] Size of the value retrieved.

Return Values

Returns TRUE if successful; otherwise, returns FALSE.

Requirements

OS Versions: Windows CE .NET 4.0 and later.
Header: Fsdmgr.h.
Link Library: Fsdmgr.lib.

See Also

FSDMGR_GetRegistryFlag | FSDMGR_GetRegistryValue

 Last updated on Friday, April 09, 2004

© 1992-2003 Microsoft Corporation. All rights reserved.