http://bugs.winehq.org/show_bug.cgi?id=4478 ------- Additional Comments From vitaliy(a)kievinfo.com 2006-03-03 21:53 ------- warn:file:CreateFileW Unable to create file L"\\\\.\\NSLOCK" (status c0000034)
what does "\\\\.\\" mean? That's \\.\ - read MSDN for more info. In two words - special device namespace. I think that's the problem... Your program might be trying to install a driver of some sort.
warn:ntdll:NtCreateFile L"\\??\\E:\\fxj\\SELF\\" not found (c0000034)
what does "\\??\\" mean? Same thing, only in winNT language ;)
warn:file:CreateFileW Unable to create file L"\\\\.\\E:" (status c0000034)
what does "\\\\.\\E:" mean? Tries to open device that is mapped to E: (read partition, or a whole device).
warn:file:CreateFileW Unable to create file L"E:\\fxj\\MultiPy.cfg" (status c0000034)
MultiPy.cfg is a file. Why can't it create MultiPy.cfg while some other files are created? c0000034 is STATUS_OBJECT_NAME_NOT_FOUND. Read MSDN again. All files are opened/created in this way (CreateFile).
In this case that error could only came from atempt to open an existant file, not to create a new file. Anyway, I would like to see WINEDEBUG=+ntdll,+snoop log -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee.