├── CONSOLE ├── Console.cpp ├── Console.h ├── Extension.h ├── General.h ├── Monitor.h ├── SOURCES ├── Session.h ├── Target.h ├── console.exe.manifest ├── console.rc ├── makefile ├── precomp.h ├── res │ ├── Hat.ico │ ├── Thumbs.db │ ├── harddisks.bmp │ ├── harddisks.png │ └── hh.gif └── resource.h ├── CPL ├── MTPadDoc.ico ├── makefile ├── resource.h ├── sources ├── uSCSICpl.cpp ├── uSCSICpl.def └── uSCSICpl.rc ├── CTL ├── makefile ├── resource.h ├── sources ├── uSCSICtl.cpp └── uSCSICtl.rc ├── DIRS ├── README.md └── TEST ├── ANYW ├── ANYW.C ├── MAKEFILE └── SOURCES ├── COMP ├── Comp.c ├── MAKEFILE └── SOURCES ├── DIRS └── WT ├── MAKEFILE ├── SOURCES └── WT.C /CONSOLE/Console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldoldman/iSCSI_ctl/HEAD/CONSOLE/Console.cpp -------------------------------------------------------------------------------- /CONSOLE/Console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldoldman/iSCSI_ctl/HEAD/CONSOLE/Console.h -------------------------------------------------------------------------------- /CONSOLE/Extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldoldman/iSCSI_ctl/HEAD/CONSOLE/Extension.h -------------------------------------------------------------------------------- /CONSOLE/General.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldoldman/iSCSI_ctl/HEAD/CONSOLE/General.h -------------------------------------------------------------------------------- /CONSOLE/Monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldoldman/iSCSI_ctl/HEAD/CONSOLE/Monitor.h -------------------------------------------------------------------------------- /CONSOLE/SOURCES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldoldman/iSCSI_ctl/HEAD/CONSOLE/SOURCES -------------------------------------------------------------------------------- /CONSOLE/Session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldoldman/iSCSI_ctl/HEAD/CONSOLE/Session.h -------------------------------------------------------------------------------- /CONSOLE/Target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldoldman/iSCSI_ctl/HEAD/CONSOLE/Target.h -------------------------------------------------------------------------------- /CONSOLE/console.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldoldman/iSCSI_ctl/HEAD/CONSOLE/console.exe.manifest -------------------------------------------------------------------------------- /CONSOLE/console.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldoldman/iSCSI_ctl/HEAD/CONSOLE/console.rc -------------------------------------------------------------------------------- /CONSOLE/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldoldman/iSCSI_ctl/HEAD/CONSOLE/makefile -------------------------------------------------------------------------------- /CONSOLE/precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldoldman/iSCSI_ctl/HEAD/CONSOLE/precomp.h -------------------------------------------------------------------------------- /CONSOLE/res/Hat.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldoldman/iSCSI_ctl/HEAD/CONSOLE/res/Hat.ico -------------------------------------------------------------------------------- /CONSOLE/res/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldoldman/iSCSI_ctl/HEAD/CONSOLE/res/Thumbs.db -------------------------------------------------------------------------------- /CONSOLE/res/harddisks.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldoldman/iSCSI_ctl/HEAD/CONSOLE/res/harddisks.bmp -------------------------------------------------------------------------------- /CONSOLE/res/harddisks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldoldman/iSCSI_ctl/HEAD/CONSOLE/res/harddisks.png -------------------------------------------------------------------------------- /CONSOLE/res/hh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldoldman/iSCSI_ctl/HEAD/CONSOLE/res/hh.gif -------------------------------------------------------------------------------- /CONSOLE/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldoldman/iSCSI_ctl/HEAD/CONSOLE/resource.h -------------------------------------------------------------------------------- /CPL/MTPadDoc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldoldman/iSCSI_ctl/HEAD/CPL/MTPadDoc.ico -------------------------------------------------------------------------------- /CPL/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldoldman/iSCSI_ctl/HEAD/CPL/makefile -------------------------------------------------------------------------------- /CPL/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldoldman/iSCSI_ctl/HEAD/CPL/resource.h -------------------------------------------------------------------------------- /CPL/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldoldman/iSCSI_ctl/HEAD/CPL/sources -------------------------------------------------------------------------------- /CPL/uSCSICpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldoldman/iSCSI_ctl/HEAD/CPL/uSCSICpl.cpp -------------------------------------------------------------------------------- /CPL/uSCSICpl.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | CPlApplet @1 -------------------------------------------------------------------------------- /CPL/uSCSICpl.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldoldman/iSCSI_ctl/HEAD/CPL/uSCSICpl.rc -------------------------------------------------------------------------------- /CTL/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldoldman/iSCSI_ctl/HEAD/CTL/makefile -------------------------------------------------------------------------------- /CTL/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldoldman/iSCSI_ctl/HEAD/CTL/resource.h -------------------------------------------------------------------------------- /CTL/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldoldman/iSCSI_ctl/HEAD/CTL/sources -------------------------------------------------------------------------------- /CTL/uSCSICtl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldoldman/iSCSI_ctl/HEAD/CTL/uSCSICtl.cpp -------------------------------------------------------------------------------- /CTL/uSCSICtl.rc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /DIRS: -------------------------------------------------------------------------------- 1 | DIRS= CTL CPL CONSOLE INSTALL -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldoldman/iSCSI_ctl/HEAD/README.md -------------------------------------------------------------------------------- /TEST/ANYW/ANYW.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldoldman/iSCSI_ctl/HEAD/TEST/ANYW/ANYW.C -------------------------------------------------------------------------------- /TEST/ANYW/MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldoldman/iSCSI_ctl/HEAD/TEST/ANYW/MAKEFILE -------------------------------------------------------------------------------- /TEST/ANYW/SOURCES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldoldman/iSCSI_ctl/HEAD/TEST/ANYW/SOURCES -------------------------------------------------------------------------------- /TEST/COMP/Comp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldoldman/iSCSI_ctl/HEAD/TEST/COMP/Comp.c -------------------------------------------------------------------------------- /TEST/COMP/MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldoldman/iSCSI_ctl/HEAD/TEST/COMP/MAKEFILE -------------------------------------------------------------------------------- /TEST/COMP/SOURCES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldoldman/iSCSI_ctl/HEAD/TEST/COMP/SOURCES -------------------------------------------------------------------------------- /TEST/DIRS: -------------------------------------------------------------------------------- 1 | DIRS=anyw wt comp -------------------------------------------------------------------------------- /TEST/WT/MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldoldman/iSCSI_ctl/HEAD/TEST/WT/MAKEFILE -------------------------------------------------------------------------------- /TEST/WT/SOURCES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldoldman/iSCSI_ctl/HEAD/TEST/WT/SOURCES -------------------------------------------------------------------------------- /TEST/WT/WT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldoldman/iSCSI_ctl/HEAD/TEST/WT/WT.C --------------------------------------------------------------------------------