Hi everyone, I need to develop a Windows application that needs to directly access sectors on a hard disk or SSD. Also, for some drives, such as NVMe/SCSI/SAS I need to send SCSI commands (CDBs) to the devices and read or write data. Basically, a SCSI IO routine.
I could write some DLLs for the ReadFile/WriteFile APIs and another for SCSI IO, in .Net, but I want to avoid using .Net framework files just for a couple of DLLs.
Hi Mike, why not compile them (AOT), no need of framework then. Not possible?
Thanks, Thomas for the really prompt reply. I was hoping I could do the whole thing in XOJO, to avoid any problems.
1 Like
I implemented those APIs in realbasic a very long time ago for a client, so it’s certainly possible. Unfortunately the source code went with the client and that was many years ago.
You should check WFS. Might have all or some of what you need.
2 Likes