├── .gitattributes ├── .gitignore ├── DWRG_DRIVER_TESTING ├── DRIVER_PROTECT_TESTING.sln └── DWRG_DRIVER_TESTING │ ├── CDlg1.cpp │ ├── CDlg1.h │ ├── CDlg2.cpp │ ├── CDlg2.h │ ├── DWRGDRIVERTESTING.rc │ ├── DWRG_DRIVER_TESTING.cpp │ ├── DWRG_DRIVER_TESTING.h │ ├── DWRG_DRIVER_TESTING.vcxproj │ ├── DWRG_DRIVER_TESTING.vcxproj.filters │ ├── DWRG_DRIVER_TESTINGDlg.cpp │ ├── DWRG_DRIVER_TESTINGDlg.h │ ├── TabSheet.cpp │ ├── TabSheet.h │ ├── framework.h │ ├── pch.cpp │ ├── pch.h │ ├── res │ ├── DWRGDRIVERTESTING.rc2 │ └── DWRG_DRIVER_TESTING.ico │ ├── resource.h │ └── targetver.h ├── DWRG_PROTECT ├── DRIVER_PROTECT.sln └── DWRG_PROTECT │ ├── 1.inf │ ├── DWRG_PROTECT.vcxproj │ ├── DWRG_PROTECT.vcxproj.filters │ ├── Drivermain.cpp │ ├── Function.cpp │ ├── Function.h │ └── PipiDef.h ├── QQ图片20211031142724.png ├── QQ图片20211031142729.png └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/Protect_Process/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/Protect_Process/HEAD/.gitignore -------------------------------------------------------------------------------- /DWRG_DRIVER_TESTING/DRIVER_PROTECT_TESTING.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/Protect_Process/HEAD/DWRG_DRIVER_TESTING/DRIVER_PROTECT_TESTING.sln -------------------------------------------------------------------------------- /DWRG_DRIVER_TESTING/DWRG_DRIVER_TESTING/CDlg1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/Protect_Process/HEAD/DWRG_DRIVER_TESTING/DWRG_DRIVER_TESTING/CDlg1.cpp -------------------------------------------------------------------------------- /DWRG_DRIVER_TESTING/DWRG_DRIVER_TESTING/CDlg1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/Protect_Process/HEAD/DWRG_DRIVER_TESTING/DWRG_DRIVER_TESTING/CDlg1.h -------------------------------------------------------------------------------- /DWRG_DRIVER_TESTING/DWRG_DRIVER_TESTING/CDlg2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/Protect_Process/HEAD/DWRG_DRIVER_TESTING/DWRG_DRIVER_TESTING/CDlg2.cpp -------------------------------------------------------------------------------- /DWRG_DRIVER_TESTING/DWRG_DRIVER_TESTING/CDlg2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/Protect_Process/HEAD/DWRG_DRIVER_TESTING/DWRG_DRIVER_TESTING/CDlg2.h -------------------------------------------------------------------------------- /DWRG_DRIVER_TESTING/DWRG_DRIVER_TESTING/DWRGDRIVERTESTING.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/Protect_Process/HEAD/DWRG_DRIVER_TESTING/DWRG_DRIVER_TESTING/DWRGDRIVERTESTING.rc -------------------------------------------------------------------------------- /DWRG_DRIVER_TESTING/DWRG_DRIVER_TESTING/DWRG_DRIVER_TESTING.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/Protect_Process/HEAD/DWRG_DRIVER_TESTING/DWRG_DRIVER_TESTING/DWRG_DRIVER_TESTING.cpp -------------------------------------------------------------------------------- /DWRG_DRIVER_TESTING/DWRG_DRIVER_TESTING/DWRG_DRIVER_TESTING.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/Protect_Process/HEAD/DWRG_DRIVER_TESTING/DWRG_DRIVER_TESTING/DWRG_DRIVER_TESTING.h -------------------------------------------------------------------------------- /DWRG_DRIVER_TESTING/DWRG_DRIVER_TESTING/DWRG_DRIVER_TESTING.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/Protect_Process/HEAD/DWRG_DRIVER_TESTING/DWRG_DRIVER_TESTING/DWRG_DRIVER_TESTING.vcxproj -------------------------------------------------------------------------------- /DWRG_DRIVER_TESTING/DWRG_DRIVER_TESTING/DWRG_DRIVER_TESTING.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/Protect_Process/HEAD/DWRG_DRIVER_TESTING/DWRG_DRIVER_TESTING/DWRG_DRIVER_TESTING.vcxproj.filters -------------------------------------------------------------------------------- /DWRG_DRIVER_TESTING/DWRG_DRIVER_TESTING/DWRG_DRIVER_TESTINGDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/Protect_Process/HEAD/DWRG_DRIVER_TESTING/DWRG_DRIVER_TESTING/DWRG_DRIVER_TESTINGDlg.cpp -------------------------------------------------------------------------------- /DWRG_DRIVER_TESTING/DWRG_DRIVER_TESTING/DWRG_DRIVER_TESTINGDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/Protect_Process/HEAD/DWRG_DRIVER_TESTING/DWRG_DRIVER_TESTING/DWRG_DRIVER_TESTINGDlg.h -------------------------------------------------------------------------------- /DWRG_DRIVER_TESTING/DWRG_DRIVER_TESTING/TabSheet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/Protect_Process/HEAD/DWRG_DRIVER_TESTING/DWRG_DRIVER_TESTING/TabSheet.cpp -------------------------------------------------------------------------------- /DWRG_DRIVER_TESTING/DWRG_DRIVER_TESTING/TabSheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/Protect_Process/HEAD/DWRG_DRIVER_TESTING/DWRG_DRIVER_TESTING/TabSheet.h -------------------------------------------------------------------------------- /DWRG_DRIVER_TESTING/DWRG_DRIVER_TESTING/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/Protect_Process/HEAD/DWRG_DRIVER_TESTING/DWRG_DRIVER_TESTING/framework.h -------------------------------------------------------------------------------- /DWRG_DRIVER_TESTING/DWRG_DRIVER_TESTING/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/Protect_Process/HEAD/DWRG_DRIVER_TESTING/DWRG_DRIVER_TESTING/pch.cpp -------------------------------------------------------------------------------- /DWRG_DRIVER_TESTING/DWRG_DRIVER_TESTING/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/Protect_Process/HEAD/DWRG_DRIVER_TESTING/DWRG_DRIVER_TESTING/pch.h -------------------------------------------------------------------------------- /DWRG_DRIVER_TESTING/DWRG_DRIVER_TESTING/res/DWRGDRIVERTESTING.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/Protect_Process/HEAD/DWRG_DRIVER_TESTING/DWRG_DRIVER_TESTING/res/DWRGDRIVERTESTING.rc2 -------------------------------------------------------------------------------- /DWRG_DRIVER_TESTING/DWRG_DRIVER_TESTING/res/DWRG_DRIVER_TESTING.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/Protect_Process/HEAD/DWRG_DRIVER_TESTING/DWRG_DRIVER_TESTING/res/DWRG_DRIVER_TESTING.ico -------------------------------------------------------------------------------- /DWRG_DRIVER_TESTING/DWRG_DRIVER_TESTING/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/Protect_Process/HEAD/DWRG_DRIVER_TESTING/DWRG_DRIVER_TESTING/resource.h -------------------------------------------------------------------------------- /DWRG_DRIVER_TESTING/DWRG_DRIVER_TESTING/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/Protect_Process/HEAD/DWRG_DRIVER_TESTING/DWRG_DRIVER_TESTING/targetver.h -------------------------------------------------------------------------------- /DWRG_PROTECT/DRIVER_PROTECT.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/Protect_Process/HEAD/DWRG_PROTECT/DRIVER_PROTECT.sln -------------------------------------------------------------------------------- /DWRG_PROTECT/DWRG_PROTECT/1.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/Protect_Process/HEAD/DWRG_PROTECT/DWRG_PROTECT/1.inf -------------------------------------------------------------------------------- /DWRG_PROTECT/DWRG_PROTECT/DWRG_PROTECT.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/Protect_Process/HEAD/DWRG_PROTECT/DWRG_PROTECT/DWRG_PROTECT.vcxproj -------------------------------------------------------------------------------- /DWRG_PROTECT/DWRG_PROTECT/DWRG_PROTECT.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/Protect_Process/HEAD/DWRG_PROTECT/DWRG_PROTECT/DWRG_PROTECT.vcxproj.filters -------------------------------------------------------------------------------- /DWRG_PROTECT/DWRG_PROTECT/Drivermain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/Protect_Process/HEAD/DWRG_PROTECT/DWRG_PROTECT/Drivermain.cpp -------------------------------------------------------------------------------- /DWRG_PROTECT/DWRG_PROTECT/Function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/Protect_Process/HEAD/DWRG_PROTECT/DWRG_PROTECT/Function.cpp -------------------------------------------------------------------------------- /DWRG_PROTECT/DWRG_PROTECT/Function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/Protect_Process/HEAD/DWRG_PROTECT/DWRG_PROTECT/Function.h -------------------------------------------------------------------------------- /DWRG_PROTECT/DWRG_PROTECT/PipiDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/Protect_Process/HEAD/DWRG_PROTECT/DWRG_PROTECT/PipiDef.h -------------------------------------------------------------------------------- /QQ图片20211031142724.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/Protect_Process/HEAD/QQ图片20211031142724.png -------------------------------------------------------------------------------- /QQ图片20211031142729.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/Protect_Process/HEAD/QQ图片20211031142729.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/Protect_Process/HEAD/README.md --------------------------------------------------------------------------------