├── .gitignore ├── FVM_UI ├── fvm │ ├── BiSplitterWnd.cpp │ ├── BiSplitterWnd.h │ ├── ConfigDialog.cpp │ ├── ConfigDialog.h │ ├── CreateDialog.cpp │ ├── CreateDialog.h │ ├── FileView.cpp │ ├── FileView.h │ ├── FilteredFolderDlg.cpp │ ├── FilteredFolderDlg.h │ ├── FolderDlg.cpp │ ├── FolderDlg.h │ ├── FvmBrowser.cpp │ ├── FvmBrowser.h │ ├── LeftView.cpp │ ├── LeftView.h │ ├── LocalFileListCtrl.cpp │ ├── LocalFileListCtrl.h │ ├── MFC64bitFix.cpp │ ├── MFC64bitFix.h │ ├── MainFrm.cpp │ ├── MainFrm.h │ ├── PathFunctions.cpp │ ├── PathFunctions.h │ ├── ProcessView.cpp │ ├── ProcessView.h │ ├── ReadMe.txt │ ├── RegView.cpp │ ├── RegView.h │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── Utility.cpp │ ├── Utility.h │ ├── fvm-gui.SearchResults │ ├── fvm.clw │ ├── fvm.cpp │ ├── fvm.dsp │ ├── fvm.dsw │ ├── fvm.h │ ├── fvm.opt │ ├── fvm.plg │ ├── fvm.rc │ ├── fvm │ │ ├── BiSplitterWnd.cpp │ │ ├── BiSplitterWnd.h │ │ ├── ConfigDialog.cpp │ │ ├── ConfigDialog.h │ │ ├── CreateDialog.cpp │ │ └── CreateDialog.h │ ├── fvmData.h │ ├── fvmDoc.cpp │ ├── fvmDoc.h │ ├── fvmView.cpp │ ├── fvmView.h │ ├── fvmdefine.h │ ├── res │ │ ├── Image1.bmp │ │ ├── Toolbar.bmp │ │ ├── bitmap1.bmp │ │ ├── coldtool.bmp │ │ ├── commit.ico │ │ ├── configure.ico │ │ ├── copy.ico │ │ ├── create.ico │ │ ├── delete.ico │ │ ├── down.ico │ │ ├── empty.ico │ │ ├── file.ico │ │ ├── fvm.ico │ │ ├── fvm.rc2 │ │ ├── fvm2.ico │ │ ├── fvmDoc.ico │ │ ├── hottoolb.bmp │ │ ├── ico205.ico │ │ ├── ico206.ico │ │ ├── off.ico │ │ ├── on.ico │ │ ├── program.ico │ │ ├── refresh.ico │ │ ├── registry.ico │ │ ├── resume.ico │ │ ├── sehll.ico │ │ ├── shell-large.ico │ │ ├── sleep.ico │ │ ├── start.ico │ │ ├── suspend.ico │ │ ├── top.ico │ │ └── up.ico │ └── resource.h └── fvmshell │ ├── BiSplitterWnd.cpp │ ├── BiSplitterWnd.h │ ├── CreateShortcut.cpp │ ├── CreateShortcut.h │ ├── DirTreeCtrl.cpp │ ├── DirTreeCtrl.h │ ├── EnterSomething.cpp │ ├── EnterSomething.h │ ├── FvmDirlView.cpp │ ├── FvmFileView.cpp │ ├── FvmFileView.h │ ├── LocalFileListCtrl.cpp │ ├── LocalFileListCtrl.h │ ├── MFC64bitFix.cpp │ ├── MFC64bitFix.h │ ├── MainFrm.cpp │ ├── MainFrm.h │ ├── Options.cpp │ ├── Options.h │ ├── PathFunctions.cpp │ ├── PathFunctions.h │ ├── ReadMe.txt │ ├── Resource.h │ ├── Setting.cpp │ ├── Setting.h │ ├── SettingView.cpp │ ├── SettingView.h │ ├── ShortCutView.cpp │ ├── ShortCutView.h │ ├── ShortcutCtrl.cpp │ ├── ShortcutCtrl.h │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── fvmData.h │ ├── fvmdirview.h │ ├── fvmshell.clw │ ├── fvmshell.cpp │ ├── fvmshell.dsp │ ├── fvmshell.dsw │ ├── fvmshell.h │ ├── fvmshell.opt │ ├── fvmshell.plg │ ├── fvmshell.rc │ ├── fvmshellDoc.cpp │ ├── fvmshellDoc.h │ ├── misc │ ├── BrowseForFolder.cpp │ ├── BrowseForFolder.h │ ├── CBase64Coding.cpp │ ├── CBase64Coding.hpp │ ├── ComboCompletion.cpp │ ├── ComboCompletion.h │ ├── CoolBtn.cpp │ ├── CoolBtn.h │ ├── ExceptionReport.cpp │ ├── ExceptionReport.h │ ├── HyperLink.cpp │ ├── Led.cpp │ ├── Led.h │ ├── MailMsg.cpp │ ├── MailMsg.h │ ├── MarkupSTL.cpp │ ├── MarkupSTL.h │ ├── MinTrayBtn.cpp │ ├── MinTrayBtn.h │ ├── ProcessorInfo.h │ ├── SAPrefsDialog.cpp │ ├── SAPrefsDialog.h │ ├── SAPrefsStatic.cpp │ ├── SAPrefsStatic.h │ ├── SAPrefsSubDlg.cpp │ ├── SAPrefsSubDlg.h │ ├── SBDestination.cpp │ ├── SBDestination.h │ ├── SystemTray.cpp │ ├── SystemTray.h │ ├── TransparentDialogBar.cpp │ ├── TransparentDialogBar.h │ ├── VisualStylesXP.cpp │ ├── VisualStylesXP.h │ ├── WindowsVersion.h │ ├── hookwnd.cpp │ ├── hookwnd.h │ ├── htmlhelp.h │ └── hyperlink.h │ └── res │ ├── Luna_Blue.bmp │ ├── Luna_Homestead.bmp │ ├── Luna_Metallic.bmp │ ├── Toolbar.bmp │ ├── certificate.ico │ ├── coldtool.bmp │ ├── donate.bmp │ ├── down.ico │ ├── empty.ico │ ├── fvmshell.ico │ ├── fvmshell.rc2 │ ├── fvmshellDoc.ico │ ├── hottoolb.bmp │ ├── leds.bmp │ ├── manifest.xml │ ├── remotetree.bmp │ ├── secure.ico │ ├── shell-large.ico │ ├── sitemanagertree.bmp │ ├── toolbar1.bmp │ └── up.ico ├── FvmDrv ├── Hooksys.rc ├── README.txt ├── fvm_daemon.c ├── fvm_daemon.h ├── fvm_file.c ├── fvm_file.h ├── fvm_fileInt.h ├── fvm_fileOpt.c ├── fvm_obj.c ├── fvm_obj.h ├── fvm_reg.c ├── fvm_reg.h ├── fvm_syscalls.h ├── fvm_table.c ├── fvm_table.h ├── fvm_util.c ├── fvm_util.h ├── fvm_vm.c ├── fvm_vm.h ├── hooksys.c ├── hooksys.h ├── makefile └── sources ├── FvmUserDoc.pdf ├── LICENSE.txt ├── UserHook ├── README.txt ├── fvmdll │ ├── api.h │ ├── detours.h │ ├── fvmdll.cpp │ ├── fvmdll.def │ ├── fvmdll.dsp │ ├── fvmdll.dsw │ ├── fvmdll.h │ ├── fvmdll.opt │ ├── fvmdll.plg │ ├── fvmuser.cpp │ ├── fvmuser.h │ ├── fvmwin.cpp │ └── fvmwin.h ├── fvmlsp │ ├── Makefile │ ├── README.txt │ ├── fvmInLsp.cpp │ ├── fvmLsp.cpp │ └── sporder │ │ └── sporder.dll └── fvmserv │ ├── Instdrv.cpp │ ├── Ldpreload.cpp │ ├── Ldpreload.h │ ├── ReadMe.txt │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── fvmserv.cpp │ ├── fvmserv.dsp │ ├── fvmserv.dsw │ ├── fvmserv.h │ ├── fvmserv.opt │ ├── fvmserv.plg │ └── service.cpp └── readme.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/.gitignore -------------------------------------------------------------------------------- /FVM_UI/fvm/BiSplitterWnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/BiSplitterWnd.cpp -------------------------------------------------------------------------------- /FVM_UI/fvm/BiSplitterWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/BiSplitterWnd.h -------------------------------------------------------------------------------- /FVM_UI/fvm/ConfigDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/ConfigDialog.cpp -------------------------------------------------------------------------------- /FVM_UI/fvm/ConfigDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/ConfigDialog.h -------------------------------------------------------------------------------- /FVM_UI/fvm/CreateDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/CreateDialog.cpp -------------------------------------------------------------------------------- /FVM_UI/fvm/CreateDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/CreateDialog.h -------------------------------------------------------------------------------- /FVM_UI/fvm/FileView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/FileView.cpp -------------------------------------------------------------------------------- /FVM_UI/fvm/FileView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/FileView.h -------------------------------------------------------------------------------- /FVM_UI/fvm/FilteredFolderDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/FilteredFolderDlg.cpp -------------------------------------------------------------------------------- /FVM_UI/fvm/FilteredFolderDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/FilteredFolderDlg.h -------------------------------------------------------------------------------- /FVM_UI/fvm/FolderDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/FolderDlg.cpp -------------------------------------------------------------------------------- /FVM_UI/fvm/FolderDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/FolderDlg.h -------------------------------------------------------------------------------- /FVM_UI/fvm/FvmBrowser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/FvmBrowser.cpp -------------------------------------------------------------------------------- /FVM_UI/fvm/FvmBrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/FvmBrowser.h -------------------------------------------------------------------------------- /FVM_UI/fvm/LeftView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/LeftView.cpp -------------------------------------------------------------------------------- /FVM_UI/fvm/LeftView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/LeftView.h -------------------------------------------------------------------------------- /FVM_UI/fvm/LocalFileListCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/LocalFileListCtrl.cpp -------------------------------------------------------------------------------- /FVM_UI/fvm/LocalFileListCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/LocalFileListCtrl.h -------------------------------------------------------------------------------- /FVM_UI/fvm/MFC64bitFix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/MFC64bitFix.cpp -------------------------------------------------------------------------------- /FVM_UI/fvm/MFC64bitFix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/MFC64bitFix.h -------------------------------------------------------------------------------- /FVM_UI/fvm/MainFrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/MainFrm.cpp -------------------------------------------------------------------------------- /FVM_UI/fvm/MainFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/MainFrm.h -------------------------------------------------------------------------------- /FVM_UI/fvm/PathFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/PathFunctions.cpp -------------------------------------------------------------------------------- /FVM_UI/fvm/PathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/PathFunctions.h -------------------------------------------------------------------------------- /FVM_UI/fvm/ProcessView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/ProcessView.cpp -------------------------------------------------------------------------------- /FVM_UI/fvm/ProcessView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/ProcessView.h -------------------------------------------------------------------------------- /FVM_UI/fvm/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/ReadMe.txt -------------------------------------------------------------------------------- /FVM_UI/fvm/RegView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/RegView.cpp -------------------------------------------------------------------------------- /FVM_UI/fvm/RegView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/RegView.h -------------------------------------------------------------------------------- /FVM_UI/fvm/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/StdAfx.cpp -------------------------------------------------------------------------------- /FVM_UI/fvm/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/StdAfx.h -------------------------------------------------------------------------------- /FVM_UI/fvm/Utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/Utility.cpp -------------------------------------------------------------------------------- /FVM_UI/fvm/Utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/Utility.h -------------------------------------------------------------------------------- /FVM_UI/fvm/fvm-gui.SearchResults: -------------------------------------------------------------------------------- 1 | ---- IO_RESUME_PROCESS Matches (0 in 0 files) ---- 2 | -------------------------------------------------------------------------------- /FVM_UI/fvm/fvm.clw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/fvm.clw -------------------------------------------------------------------------------- /FVM_UI/fvm/fvm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/fvm.cpp -------------------------------------------------------------------------------- /FVM_UI/fvm/fvm.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/fvm.dsp -------------------------------------------------------------------------------- /FVM_UI/fvm/fvm.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/fvm.dsw -------------------------------------------------------------------------------- /FVM_UI/fvm/fvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/fvm.h -------------------------------------------------------------------------------- /FVM_UI/fvm/fvm.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/fvm.opt -------------------------------------------------------------------------------- /FVM_UI/fvm/fvm.plg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/fvm.plg -------------------------------------------------------------------------------- /FVM_UI/fvm/fvm.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/fvm.rc -------------------------------------------------------------------------------- /FVM_UI/fvm/fvm/BiSplitterWnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/fvm/BiSplitterWnd.cpp -------------------------------------------------------------------------------- /FVM_UI/fvm/fvm/BiSplitterWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/fvm/BiSplitterWnd.h -------------------------------------------------------------------------------- /FVM_UI/fvm/fvm/ConfigDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/fvm/ConfigDialog.cpp -------------------------------------------------------------------------------- /FVM_UI/fvm/fvm/ConfigDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/fvm/ConfigDialog.h -------------------------------------------------------------------------------- /FVM_UI/fvm/fvm/CreateDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/fvm/CreateDialog.cpp -------------------------------------------------------------------------------- /FVM_UI/fvm/fvm/CreateDialog.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FVM_UI/fvm/fvmData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/fvmData.h -------------------------------------------------------------------------------- /FVM_UI/fvm/fvmDoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/fvmDoc.cpp -------------------------------------------------------------------------------- /FVM_UI/fvm/fvmDoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/fvmDoc.h -------------------------------------------------------------------------------- /FVM_UI/fvm/fvmView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/fvmView.cpp -------------------------------------------------------------------------------- /FVM_UI/fvm/fvmView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/fvmView.h -------------------------------------------------------------------------------- /FVM_UI/fvm/fvmdefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/fvmdefine.h -------------------------------------------------------------------------------- /FVM_UI/fvm/res/Image1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/res/Image1.bmp -------------------------------------------------------------------------------- /FVM_UI/fvm/res/Toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/res/Toolbar.bmp -------------------------------------------------------------------------------- /FVM_UI/fvm/res/bitmap1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/res/bitmap1.bmp -------------------------------------------------------------------------------- /FVM_UI/fvm/res/coldtool.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/res/coldtool.bmp -------------------------------------------------------------------------------- /FVM_UI/fvm/res/commit.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/res/commit.ico -------------------------------------------------------------------------------- /FVM_UI/fvm/res/configure.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/res/configure.ico -------------------------------------------------------------------------------- /FVM_UI/fvm/res/copy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/res/copy.ico -------------------------------------------------------------------------------- /FVM_UI/fvm/res/create.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/res/create.ico -------------------------------------------------------------------------------- /FVM_UI/fvm/res/delete.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/res/delete.ico -------------------------------------------------------------------------------- /FVM_UI/fvm/res/down.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/res/down.ico -------------------------------------------------------------------------------- /FVM_UI/fvm/res/empty.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/res/empty.ico -------------------------------------------------------------------------------- /FVM_UI/fvm/res/file.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/res/file.ico -------------------------------------------------------------------------------- /FVM_UI/fvm/res/fvm.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/res/fvm.ico -------------------------------------------------------------------------------- /FVM_UI/fvm/res/fvm.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/res/fvm.rc2 -------------------------------------------------------------------------------- /FVM_UI/fvm/res/fvm2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/res/fvm2.ico -------------------------------------------------------------------------------- /FVM_UI/fvm/res/fvmDoc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/res/fvmDoc.ico -------------------------------------------------------------------------------- /FVM_UI/fvm/res/hottoolb.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/res/hottoolb.bmp -------------------------------------------------------------------------------- /FVM_UI/fvm/res/ico205.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/res/ico205.ico -------------------------------------------------------------------------------- /FVM_UI/fvm/res/ico206.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/res/ico206.ico -------------------------------------------------------------------------------- /FVM_UI/fvm/res/off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/res/off.ico -------------------------------------------------------------------------------- /FVM_UI/fvm/res/on.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/res/on.ico -------------------------------------------------------------------------------- /FVM_UI/fvm/res/program.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/res/program.ico -------------------------------------------------------------------------------- /FVM_UI/fvm/res/refresh.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/res/refresh.ico -------------------------------------------------------------------------------- /FVM_UI/fvm/res/registry.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/res/registry.ico -------------------------------------------------------------------------------- /FVM_UI/fvm/res/resume.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/res/resume.ico -------------------------------------------------------------------------------- /FVM_UI/fvm/res/sehll.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/res/sehll.ico -------------------------------------------------------------------------------- /FVM_UI/fvm/res/shell-large.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/res/shell-large.ico -------------------------------------------------------------------------------- /FVM_UI/fvm/res/sleep.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/res/sleep.ico -------------------------------------------------------------------------------- /FVM_UI/fvm/res/start.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/res/start.ico -------------------------------------------------------------------------------- /FVM_UI/fvm/res/suspend.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/res/suspend.ico -------------------------------------------------------------------------------- /FVM_UI/fvm/res/top.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/res/top.ico -------------------------------------------------------------------------------- /FVM_UI/fvm/res/up.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/res/up.ico -------------------------------------------------------------------------------- /FVM_UI/fvm/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvm/resource.h -------------------------------------------------------------------------------- /FVM_UI/fvmshell/BiSplitterWnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/BiSplitterWnd.cpp -------------------------------------------------------------------------------- /FVM_UI/fvmshell/BiSplitterWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/BiSplitterWnd.h -------------------------------------------------------------------------------- /FVM_UI/fvmshell/CreateShortcut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/CreateShortcut.cpp -------------------------------------------------------------------------------- /FVM_UI/fvmshell/CreateShortcut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/CreateShortcut.h -------------------------------------------------------------------------------- /FVM_UI/fvmshell/DirTreeCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/DirTreeCtrl.cpp -------------------------------------------------------------------------------- /FVM_UI/fvmshell/DirTreeCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/DirTreeCtrl.h -------------------------------------------------------------------------------- /FVM_UI/fvmshell/EnterSomething.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/EnterSomething.cpp -------------------------------------------------------------------------------- /FVM_UI/fvmshell/EnterSomething.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/EnterSomething.h -------------------------------------------------------------------------------- /FVM_UI/fvmshell/FvmDirlView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/FvmDirlView.cpp -------------------------------------------------------------------------------- /FVM_UI/fvmshell/FvmFileView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/FvmFileView.cpp -------------------------------------------------------------------------------- /FVM_UI/fvmshell/FvmFileView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/FvmFileView.h -------------------------------------------------------------------------------- /FVM_UI/fvmshell/LocalFileListCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/LocalFileListCtrl.cpp -------------------------------------------------------------------------------- /FVM_UI/fvmshell/LocalFileListCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/LocalFileListCtrl.h -------------------------------------------------------------------------------- /FVM_UI/fvmshell/MFC64bitFix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/MFC64bitFix.cpp -------------------------------------------------------------------------------- /FVM_UI/fvmshell/MFC64bitFix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/MFC64bitFix.h -------------------------------------------------------------------------------- /FVM_UI/fvmshell/MainFrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/MainFrm.cpp -------------------------------------------------------------------------------- /FVM_UI/fvmshell/MainFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/MainFrm.h -------------------------------------------------------------------------------- /FVM_UI/fvmshell/Options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/Options.cpp -------------------------------------------------------------------------------- /FVM_UI/fvmshell/Options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/Options.h -------------------------------------------------------------------------------- /FVM_UI/fvmshell/PathFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/PathFunctions.cpp -------------------------------------------------------------------------------- /FVM_UI/fvmshell/PathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/PathFunctions.h -------------------------------------------------------------------------------- /FVM_UI/fvmshell/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/ReadMe.txt -------------------------------------------------------------------------------- /FVM_UI/fvmshell/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/Resource.h -------------------------------------------------------------------------------- /FVM_UI/fvmshell/Setting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/Setting.cpp -------------------------------------------------------------------------------- /FVM_UI/fvmshell/Setting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/Setting.h -------------------------------------------------------------------------------- /FVM_UI/fvmshell/SettingView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/SettingView.cpp -------------------------------------------------------------------------------- /FVM_UI/fvmshell/SettingView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/SettingView.h -------------------------------------------------------------------------------- /FVM_UI/fvmshell/ShortCutView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/ShortCutView.cpp -------------------------------------------------------------------------------- /FVM_UI/fvmshell/ShortCutView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/ShortCutView.h -------------------------------------------------------------------------------- /FVM_UI/fvmshell/ShortcutCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/ShortcutCtrl.cpp -------------------------------------------------------------------------------- /FVM_UI/fvmshell/ShortcutCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/ShortcutCtrl.h -------------------------------------------------------------------------------- /FVM_UI/fvmshell/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/StdAfx.cpp -------------------------------------------------------------------------------- /FVM_UI/fvmshell/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/StdAfx.h -------------------------------------------------------------------------------- /FVM_UI/fvmshell/fvmData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/fvmData.h -------------------------------------------------------------------------------- /FVM_UI/fvmshell/fvmdirview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/fvmdirview.h -------------------------------------------------------------------------------- /FVM_UI/fvmshell/fvmshell.clw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/fvmshell.clw -------------------------------------------------------------------------------- /FVM_UI/fvmshell/fvmshell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/fvmshell.cpp -------------------------------------------------------------------------------- /FVM_UI/fvmshell/fvmshell.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/fvmshell.dsp -------------------------------------------------------------------------------- /FVM_UI/fvmshell/fvmshell.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/fvmshell.dsw -------------------------------------------------------------------------------- /FVM_UI/fvmshell/fvmshell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/fvmshell.h -------------------------------------------------------------------------------- /FVM_UI/fvmshell/fvmshell.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/fvmshell.opt -------------------------------------------------------------------------------- /FVM_UI/fvmshell/fvmshell.plg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/fvmshell.plg -------------------------------------------------------------------------------- /FVM_UI/fvmshell/fvmshell.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/fvmshell.rc -------------------------------------------------------------------------------- /FVM_UI/fvmshell/fvmshellDoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/fvmshellDoc.cpp -------------------------------------------------------------------------------- /FVM_UI/fvmshell/fvmshellDoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/fvmshellDoc.h -------------------------------------------------------------------------------- /FVM_UI/fvmshell/misc/BrowseForFolder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/misc/BrowseForFolder.cpp -------------------------------------------------------------------------------- /FVM_UI/fvmshell/misc/BrowseForFolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/misc/BrowseForFolder.h -------------------------------------------------------------------------------- /FVM_UI/fvmshell/misc/CBase64Coding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/misc/CBase64Coding.cpp -------------------------------------------------------------------------------- /FVM_UI/fvmshell/misc/CBase64Coding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/misc/CBase64Coding.hpp -------------------------------------------------------------------------------- /FVM_UI/fvmshell/misc/ComboCompletion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/misc/ComboCompletion.cpp -------------------------------------------------------------------------------- /FVM_UI/fvmshell/misc/ComboCompletion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/misc/ComboCompletion.h -------------------------------------------------------------------------------- /FVM_UI/fvmshell/misc/CoolBtn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/misc/CoolBtn.cpp -------------------------------------------------------------------------------- /FVM_UI/fvmshell/misc/CoolBtn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/misc/CoolBtn.h -------------------------------------------------------------------------------- /FVM_UI/fvmshell/misc/ExceptionReport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/misc/ExceptionReport.cpp -------------------------------------------------------------------------------- /FVM_UI/fvmshell/misc/ExceptionReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/misc/ExceptionReport.h -------------------------------------------------------------------------------- /FVM_UI/fvmshell/misc/HyperLink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/misc/HyperLink.cpp -------------------------------------------------------------------------------- /FVM_UI/fvmshell/misc/Led.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/misc/Led.cpp -------------------------------------------------------------------------------- /FVM_UI/fvmshell/misc/Led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/misc/Led.h -------------------------------------------------------------------------------- /FVM_UI/fvmshell/misc/MailMsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/misc/MailMsg.cpp -------------------------------------------------------------------------------- /FVM_UI/fvmshell/misc/MailMsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/misc/MailMsg.h -------------------------------------------------------------------------------- /FVM_UI/fvmshell/misc/MarkupSTL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/misc/MarkupSTL.cpp -------------------------------------------------------------------------------- /FVM_UI/fvmshell/misc/MarkupSTL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/misc/MarkupSTL.h -------------------------------------------------------------------------------- /FVM_UI/fvmshell/misc/MinTrayBtn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/misc/MinTrayBtn.cpp -------------------------------------------------------------------------------- /FVM_UI/fvmshell/misc/MinTrayBtn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/misc/MinTrayBtn.h -------------------------------------------------------------------------------- /FVM_UI/fvmshell/misc/ProcessorInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/misc/ProcessorInfo.h -------------------------------------------------------------------------------- /FVM_UI/fvmshell/misc/SAPrefsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/misc/SAPrefsDialog.cpp -------------------------------------------------------------------------------- /FVM_UI/fvmshell/misc/SAPrefsDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/misc/SAPrefsDialog.h -------------------------------------------------------------------------------- /FVM_UI/fvmshell/misc/SAPrefsStatic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/misc/SAPrefsStatic.cpp -------------------------------------------------------------------------------- /FVM_UI/fvmshell/misc/SAPrefsStatic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/misc/SAPrefsStatic.h -------------------------------------------------------------------------------- /FVM_UI/fvmshell/misc/SAPrefsSubDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/misc/SAPrefsSubDlg.cpp -------------------------------------------------------------------------------- /FVM_UI/fvmshell/misc/SAPrefsSubDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/misc/SAPrefsSubDlg.h -------------------------------------------------------------------------------- /FVM_UI/fvmshell/misc/SBDestination.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/misc/SBDestination.cpp -------------------------------------------------------------------------------- /FVM_UI/fvmshell/misc/SBDestination.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/misc/SBDestination.h -------------------------------------------------------------------------------- /FVM_UI/fvmshell/misc/SystemTray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/misc/SystemTray.cpp -------------------------------------------------------------------------------- /FVM_UI/fvmshell/misc/SystemTray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/misc/SystemTray.h -------------------------------------------------------------------------------- /FVM_UI/fvmshell/misc/TransparentDialogBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/misc/TransparentDialogBar.cpp -------------------------------------------------------------------------------- /FVM_UI/fvmshell/misc/TransparentDialogBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/misc/TransparentDialogBar.h -------------------------------------------------------------------------------- /FVM_UI/fvmshell/misc/VisualStylesXP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/misc/VisualStylesXP.cpp -------------------------------------------------------------------------------- /FVM_UI/fvmshell/misc/VisualStylesXP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/misc/VisualStylesXP.h -------------------------------------------------------------------------------- /FVM_UI/fvmshell/misc/WindowsVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/misc/WindowsVersion.h -------------------------------------------------------------------------------- /FVM_UI/fvmshell/misc/hookwnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/misc/hookwnd.cpp -------------------------------------------------------------------------------- /FVM_UI/fvmshell/misc/hookwnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/misc/hookwnd.h -------------------------------------------------------------------------------- /FVM_UI/fvmshell/misc/htmlhelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/misc/htmlhelp.h -------------------------------------------------------------------------------- /FVM_UI/fvmshell/misc/hyperlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/misc/hyperlink.h -------------------------------------------------------------------------------- /FVM_UI/fvmshell/res/Luna_Blue.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/res/Luna_Blue.bmp -------------------------------------------------------------------------------- /FVM_UI/fvmshell/res/Luna_Homestead.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/res/Luna_Homestead.bmp -------------------------------------------------------------------------------- /FVM_UI/fvmshell/res/Luna_Metallic.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/res/Luna_Metallic.bmp -------------------------------------------------------------------------------- /FVM_UI/fvmshell/res/Toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/res/Toolbar.bmp -------------------------------------------------------------------------------- /FVM_UI/fvmshell/res/certificate.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/res/certificate.ico -------------------------------------------------------------------------------- /FVM_UI/fvmshell/res/coldtool.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/res/coldtool.bmp -------------------------------------------------------------------------------- /FVM_UI/fvmshell/res/donate.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/res/donate.bmp -------------------------------------------------------------------------------- /FVM_UI/fvmshell/res/down.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/res/down.ico -------------------------------------------------------------------------------- /FVM_UI/fvmshell/res/empty.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/res/empty.ico -------------------------------------------------------------------------------- /FVM_UI/fvmshell/res/fvmshell.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/res/fvmshell.ico -------------------------------------------------------------------------------- /FVM_UI/fvmshell/res/fvmshell.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/res/fvmshell.rc2 -------------------------------------------------------------------------------- /FVM_UI/fvmshell/res/fvmshellDoc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/res/fvmshellDoc.ico -------------------------------------------------------------------------------- /FVM_UI/fvmshell/res/hottoolb.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/res/hottoolb.bmp -------------------------------------------------------------------------------- /FVM_UI/fvmshell/res/leds.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/res/leds.bmp -------------------------------------------------------------------------------- /FVM_UI/fvmshell/res/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/res/manifest.xml -------------------------------------------------------------------------------- /FVM_UI/fvmshell/res/remotetree.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/res/remotetree.bmp -------------------------------------------------------------------------------- /FVM_UI/fvmshell/res/secure.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/res/secure.ico -------------------------------------------------------------------------------- /FVM_UI/fvmshell/res/shell-large.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/res/shell-large.ico -------------------------------------------------------------------------------- /FVM_UI/fvmshell/res/sitemanagertree.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/res/sitemanagertree.bmp -------------------------------------------------------------------------------- /FVM_UI/fvmshell/res/toolbar1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/res/toolbar1.bmp -------------------------------------------------------------------------------- /FVM_UI/fvmshell/res/up.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FVM_UI/fvmshell/res/up.ico -------------------------------------------------------------------------------- /FvmDrv/Hooksys.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FvmDrv/Hooksys.rc -------------------------------------------------------------------------------- /FvmDrv/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FvmDrv/README.txt -------------------------------------------------------------------------------- /FvmDrv/fvm_daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FvmDrv/fvm_daemon.c -------------------------------------------------------------------------------- /FvmDrv/fvm_daemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FvmDrv/fvm_daemon.h -------------------------------------------------------------------------------- /FvmDrv/fvm_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FvmDrv/fvm_file.c -------------------------------------------------------------------------------- /FvmDrv/fvm_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FvmDrv/fvm_file.h -------------------------------------------------------------------------------- /FvmDrv/fvm_fileInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FvmDrv/fvm_fileInt.h -------------------------------------------------------------------------------- /FvmDrv/fvm_fileOpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FvmDrv/fvm_fileOpt.c -------------------------------------------------------------------------------- /FvmDrv/fvm_obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FvmDrv/fvm_obj.c -------------------------------------------------------------------------------- /FvmDrv/fvm_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FvmDrv/fvm_obj.h -------------------------------------------------------------------------------- /FvmDrv/fvm_reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FvmDrv/fvm_reg.c -------------------------------------------------------------------------------- /FvmDrv/fvm_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FvmDrv/fvm_reg.h -------------------------------------------------------------------------------- /FvmDrv/fvm_syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FvmDrv/fvm_syscalls.h -------------------------------------------------------------------------------- /FvmDrv/fvm_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FvmDrv/fvm_table.c -------------------------------------------------------------------------------- /FvmDrv/fvm_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FvmDrv/fvm_table.h -------------------------------------------------------------------------------- /FvmDrv/fvm_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FvmDrv/fvm_util.c -------------------------------------------------------------------------------- /FvmDrv/fvm_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FvmDrv/fvm_util.h -------------------------------------------------------------------------------- /FvmDrv/fvm_vm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FvmDrv/fvm_vm.c -------------------------------------------------------------------------------- /FvmDrv/fvm_vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FvmDrv/fvm_vm.h -------------------------------------------------------------------------------- /FvmDrv/hooksys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FvmDrv/hooksys.c -------------------------------------------------------------------------------- /FvmDrv/hooksys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FvmDrv/hooksys.h -------------------------------------------------------------------------------- /FvmDrv/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FvmDrv/makefile -------------------------------------------------------------------------------- /FvmDrv/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FvmDrv/sources -------------------------------------------------------------------------------- /FvmUserDoc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/FvmUserDoc.pdf -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /UserHook/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/UserHook/README.txt -------------------------------------------------------------------------------- /UserHook/fvmdll/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/UserHook/fvmdll/api.h -------------------------------------------------------------------------------- /UserHook/fvmdll/detours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/UserHook/fvmdll/detours.h -------------------------------------------------------------------------------- /UserHook/fvmdll/fvmdll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/UserHook/fvmdll/fvmdll.cpp -------------------------------------------------------------------------------- /UserHook/fvmdll/fvmdll.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/UserHook/fvmdll/fvmdll.def -------------------------------------------------------------------------------- /UserHook/fvmdll/fvmdll.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/UserHook/fvmdll/fvmdll.dsp -------------------------------------------------------------------------------- /UserHook/fvmdll/fvmdll.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/UserHook/fvmdll/fvmdll.dsw -------------------------------------------------------------------------------- /UserHook/fvmdll/fvmdll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/UserHook/fvmdll/fvmdll.h -------------------------------------------------------------------------------- /UserHook/fvmdll/fvmdll.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/UserHook/fvmdll/fvmdll.opt -------------------------------------------------------------------------------- /UserHook/fvmdll/fvmdll.plg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/UserHook/fvmdll/fvmdll.plg -------------------------------------------------------------------------------- /UserHook/fvmdll/fvmuser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/UserHook/fvmdll/fvmuser.cpp -------------------------------------------------------------------------------- /UserHook/fvmdll/fvmuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/UserHook/fvmdll/fvmuser.h -------------------------------------------------------------------------------- /UserHook/fvmdll/fvmwin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/UserHook/fvmdll/fvmwin.cpp -------------------------------------------------------------------------------- /UserHook/fvmdll/fvmwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/UserHook/fvmdll/fvmwin.h -------------------------------------------------------------------------------- /UserHook/fvmlsp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/UserHook/fvmlsp/Makefile -------------------------------------------------------------------------------- /UserHook/fvmlsp/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/UserHook/fvmlsp/README.txt -------------------------------------------------------------------------------- /UserHook/fvmlsp/fvmInLsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/UserHook/fvmlsp/fvmInLsp.cpp -------------------------------------------------------------------------------- /UserHook/fvmlsp/fvmLsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/UserHook/fvmlsp/fvmLsp.cpp -------------------------------------------------------------------------------- /UserHook/fvmlsp/sporder/sporder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/UserHook/fvmlsp/sporder/sporder.dll -------------------------------------------------------------------------------- /UserHook/fvmserv/Instdrv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/UserHook/fvmserv/Instdrv.cpp -------------------------------------------------------------------------------- /UserHook/fvmserv/Ldpreload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/UserHook/fvmserv/Ldpreload.cpp -------------------------------------------------------------------------------- /UserHook/fvmserv/Ldpreload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/UserHook/fvmserv/Ldpreload.h -------------------------------------------------------------------------------- /UserHook/fvmserv/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/UserHook/fvmserv/ReadMe.txt -------------------------------------------------------------------------------- /UserHook/fvmserv/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/UserHook/fvmserv/StdAfx.cpp -------------------------------------------------------------------------------- /UserHook/fvmserv/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/UserHook/fvmserv/StdAfx.h -------------------------------------------------------------------------------- /UserHook/fvmserv/fvmserv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/UserHook/fvmserv/fvmserv.cpp -------------------------------------------------------------------------------- /UserHook/fvmserv/fvmserv.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/UserHook/fvmserv/fvmserv.dsp -------------------------------------------------------------------------------- /UserHook/fvmserv/fvmserv.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/UserHook/fvmserv/fvmserv.dsw -------------------------------------------------------------------------------- /UserHook/fvmserv/fvmserv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/UserHook/fvmserv/fvmserv.h -------------------------------------------------------------------------------- /UserHook/fvmserv/fvmserv.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/UserHook/fvmserv/fvmserv.opt -------------------------------------------------------------------------------- /UserHook/fvmserv/fvmserv.plg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/UserHook/fvmserv/fvmserv.plg -------------------------------------------------------------------------------- /UserHook/fvmserv/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/UserHook/fvmserv/service.cpp -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadSki/FeatherweightVirtualMachine/HEAD/readme.md --------------------------------------------------------------------------------