I have found in the export table of Kernel32 the function LZCreateFileW.
This is not documented. It is obviously a companion function to the LZxxx functions for file compression.
I have found the following declaration:
ULONG WINAPI LZCreateFileW (IN LPCWSTR FileName,
IN DWORD dwDesiredAccess,
IN DWORD dwShareMode,
IN DWORD dwCreationDisposition,
IN LPWSTR lpString1 );
this is similar to CreateFile(). But I can not guess what lpString1 does.
Any ideas?