FSDMGR_CreateFileHandle

This function is called by the file system driver (FSD) to create a handle for a specified file..

At a Glance

Header file: Fsdmgr.h
Windows CE versions: 2.10 and later

Syntax

HANDLE FSDMGR_CreateFileHandle( HVOL hVol, HANDLE hProc,
PFILE
pFile);

Parameters

hVol

[in] Handle to the mounted volume that is returned from FSDMGR_RegisterVolume. This handle is not a true Win32 handle.

hProc

[in] Handle to the originating process handle.

pFile

[out] Pointer to the file-specific data defined by the file system driver for the new handle.

Return Values

A handle associated with the originating process indicates success. INVALID_HANDLE_VALUE indicates failure.

See Also

FSDMGR_RegisterVolume