SocramMalaquias 0 Posted July 13, 2010 I searched everywhere but I can't find what I'm searching for I have a Digital Photo Frame that can be hacked under Linux to show images sent from the computer, and use it as a second monitor. So I'm trying to port these tools to Windows using AutoIT I need to open the Flash Drive in write RAW mode since it uses a special mode for read and write data (commands to 0x6200, write data to 0x6600, read data from 0xB000) FileOpen("\\.\X:", 0) works for read, but FileOpen("\\.\X:", 1) nor FileOpen("\\.\X:", 2) works for write. Any ideas? I got -1 as handle in both Thank you in advance Share this post Link to post Share on other sites
AdmiralAlkex 125 Posted July 13, 2010 I think you have to use the _WinAPI*() functions for that. A starting point would be _WinAPI_CreateFile(). It's in the helpfile. .Some of my scripts: ShiftER, Codec-Control, Resolution switcher for HTC ShiftSome of my UDFs: SDL UDF, SetDefaultDllDirectories, Converting GDI+ Bitmap/Image to SDL Surface Share this post Link to post Share on other sites
SocramMalaquias 0 Posted July 13, 2010 Thank you. I'm now working on it Share this post Link to post Share on other sites