The xxx_Close function closes the device context identified by hOpenContext.
BOOL xxx_Close( DWORD hOpenContext );
Returns TRUE if the device successfully closed, and FALSE otherwise.
An application calls CloseHandle(hFile) to cease using an installable device. The hFile argument specifies the handle associated with the device context. In response to CloseHandle, the operating system invokes xxx_Close.
The file handle specified for hOpenContext should be invalid after this function returns, such that if an application tries to perform Stream I/O functions on that handle after calling CloseHandle()