Kai Blin wrote:
Hi folks,
I'm trying to figure out where the wine server actually decides if a file actually is a file on disk, a local or a remote pipe. Any pointers?
You mean during CreateFile -> NtCreateFile? It's using object manager in wineserver to find the object associated with that path. It all starts here - DECL_HANDLER(open_file_object) in wineserver/fd.c
Vitaliy.