http://bugs.winehq.org/show_bug.cgi?id=7784
xerox_xerox2000@yahoo.co.uk changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever Confirmed| |1
------- Additional Comments From xerox_xerox2000@yahoo.co.uk 2007-18-03 09:42 ------- Hi, i don't know about the 1st problem , but the second one seems to be a bug in CreateFileA: This sample --------------------------------------------------------------- #include <stdio.h>
#include "windows.h"
int WINAPI WinMain(HINSTANCE hinst, HINSTANCE hprev, LPSTR cmdline, int cmdshow) {
HANDLE hFile; hFile = CreateFile("\\.\c:",0,FILE_SHARE_WRITE,0,OPEN_EXISTING,0,0); if(hFile == -1) printf("ERRROR\n"); else printf("All OK\n"); CloseHandle(hFile); return 0; } -----------------------------------
gives different output on windows and wine (on windows it says "All OK")
Maybe the "\\.\c:" is not handled correctly