.NET
aspiemu.txt
Associated article: Writing Portable Win32 SCSI Applications
Tags: .NET
Published source code accompanying the article by Thomas Tewell in which he presents ASPIEMU, a WinASPI 32-bit DLL emulator module for portable Win32 SCSI programming. Also see ASPIEMU.ZIP.
Writing Portable Win32 SCSI Applications
by Thomas Tewell
Listing One
if(GetVersion() < 0x8000000)
{
Windows NT
}
else
{
Windows 95
}
Listing Two
//-------------------------------------------------------------------
// Open SCSI Port Driver
//-------------------------------------------------------------------
wsprintf(adapter_name,".SCSI%d:",AdapterCount);
fileHandle = CreateFile(adapter_name, GENERIC_WRITE | ...


