Implementing SYS-files for Wine

2006-01-09 Thread Anton Litvinov \(wine_user\)
I want to run a proprietary program which does the following things: ... fh = CreateFileA(C:\WINDOWS\system32\DRIVERS\BIOSMAP.SYS, ...); ... dh = CreateFileA(\\.\BIOSMAP, ...); ... r = DeviceIoControl(dh, 0x1000, ...); ... On recieving 0x1000 code BIOSMAP maps BIOS content (brand,

Re: Implementing SYS-files for Wine

2006-01-09 Thread Damjan Jovanovic
--- Anton Litvinov (wine_user) [EMAIL PROTECTED] wrote: I want to run a proprietary program which does the following things: ... fh = CreateFileA(C:\WINDOWS\system32\DRIVERS\BIOSMAP.SYS, ...); ... dh = CreateFileA(\\.\BIOSMAP, ...); ... r = DeviceIoControl(dh, 0x1000,