├── .gitattributes ├── .gitignore ├── 80 port reuse demo(TDI structure) ├── con remote │ ├── ConsoleApplication1.sln │ └── ConsoleApplication1 │ │ ├── ConsoleApplication1.cpp │ │ ├── ConsoleApplication1.vcxproj │ │ ├── ConsoleApplication1.vcxproj.filters │ │ ├── ConsoleApplication1.vcxproj.user │ │ ├── ReadMe.txt │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h ├── sys │ ├── MyDriver6.sln │ ├── MyDriver6 │ │ ├── MyDriver6.vcxproj │ │ ├── MyDriver6.vcxproj.filters │ │ ├── conn_state.h │ │ ├── dispatch.h │ │ ├── events.h │ │ ├── filter.h │ │ ├── head.h │ │ ├── ipc.h │ │ ├── memtrack.h │ │ ├── ndis_hk_ioctl.h │ │ ├── net.h │ │ ├── obj_tbl.h │ │ ├── packet.h │ │ ├── pid_pname.h │ │ ├── sids.h │ │ ├── sock.h │ │ ├── tdi.c │ │ ├── tdi_fw.h │ │ └── tdi_fw_lib.h │ └── x64 │ │ ├── Win8Debug │ │ ├── MyDriver6 Package │ │ │ └── MyDriver6.sys │ │ ├── MyDriver6.cer │ │ └── MyDriver6.sys │ │ └── Win8Release │ │ ├── MyDriver6 Package │ │ └── MyDriver6.inf │ │ └── MyDriver6.inf ├── 使用说明.docx └── 服务器返回数据(device con)(需先运行链接到远程主机) │ ├── ConsoleApplication3 control.sln │ └── ConsoleApplication3 control │ ├── ConsoleApplication3 control.cpp │ ├── ConsoleApplication3 control.vcxproj │ ├── ConsoleApplication3 control.vcxproj.filters │ ├── ReadMe.txt │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── DirectX walk on terrian ├── Debug │ └── Win32Project3.exe ├── Release │ └── Win32Project3.exe ├── Win32Project3.sln └── Win32Project3 │ ├── 20131106041030261410.jpg │ ├── 201311140304289111.jpg │ ├── Debug │ └── Win32Project3.tlog │ │ └── Win32Project3.lastbuildstate │ ├── Release │ └── Win32Project3.tlog │ │ └── Win32Project3.lastbuildstate │ ├── Win32Project3.exe │ ├── Win32Project3.vcxproj │ ├── Win32Project3.vcxproj.filters │ ├── Win32Project3.vcxproj.user │ ├── asd.raw │ ├── coastMountain64.raw │ ├── crate.jpg │ ├── desert.bmp │ ├── grass.jpg │ ├── snow.jpg │ ├── terrian.h │ ├── wall.jpg │ └── 源.cpp ├── DirectX Mirror effect ├── Debug │ └── Win32Project1.exe ├── Win32Project1.sln └── Win32Project1 │ ├── 201311140304289111.jpg │ ├── Debug │ └── Win32Project1.tlog │ │ └── Win32Project1.lastbuildstate │ ├── Win32Project1.vcxproj │ ├── Win32Project1.vcxproj.filters │ ├── crate.jpg │ ├── ice.bmp │ ├── wall.jpg │ └── 源.cpp ├── DirectX firework and snow ├── Debug │ └── Win32Project1.exe ├── Win32Project1.sln └── Win32Project1 │ ├── 20131106041030261410.jpg │ ├── 201311140304289111.jpg │ ├── Debug │ └── Win32Project1.tlog │ │ └── Win32Project1.lastbuildstate │ ├── Win32Project1.vcxproj │ ├── Win32Project1.vcxproj.filters │ ├── Win32Project1.vcxproj.user │ ├── bigship1.x │ ├── crate.jpg │ ├── flare.bmp │ ├── jl.h │ ├── snowflake.dds │ ├── wall.jpg │ └── 源.cpp ├── DirectX movie └── Win32Project2 │ ├── Debug │ ├── Win32Project2.res │ └── Win32Project2.tlog │ │ └── Win32Project2.lastbuildstate │ ├── ReadMe.txt │ ├── Resource.h │ ├── Win32Project2.cpp │ ├── Win32Project2.h │ ├── Win32Project2.ico │ ├── Win32Project2.rc │ ├── Win32Project2.vcxproj │ ├── Win32Project2.vcxproj.filters │ ├── small.ico │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── DirectX动画完善版 ├── Debug │ └── Win32Project2.exe ├── Win32Project2.sln └── Win32Project2 │ ├── 20131106041030261410.jpg │ ├── 201311140304289111.jpg │ ├── Debug │ └── Win32Project2.tlog │ │ └── Win32Project2.lastbuildstate │ ├── Win32Project2.vcxproj │ ├── Win32Project2.vcxproj.filters │ ├── chap6_0.jpg │ ├── crate.jpg │ ├── wall.jpg │ └── 源.cpp ├── DirectX相机第一人称视角 ├── Debug │ └── Win32Project3.exe ├── Release │ ├── 20131106041030261410.jpg │ ├── 201311140304289111.jpg │ ├── Release.zip │ ├── Win32Project3.exe │ ├── bigship1.x │ ├── crate.jpg │ └── wall.jpg ├── Win32Project3.sln └── Win32Project3 │ ├── 20131106041030261410.jpg │ ├── 201311140304289111.jpg │ ├── Debug │ └── Win32Project3.tlog │ │ └── Win32Project3.lastbuildstate │ ├── Release │ └── Win32Project3.tlog │ │ └── Win32Project3.lastbuildstate │ ├── Win32Project3.vcxproj │ ├── Win32Project3.vcxproj.filters │ ├── Win32Project3.vcxproj.user │ ├── bigship1.x │ ├── crate.jpg │ ├── wall.jpg │ └── 源.cpp ├── DirectX计算FPS以及3D文字显示 ├── Debug │ └── Win32Project1.exe ├── Win32Project1.sln └── Win32Project1 │ ├── 20131106041030261410.jpg │ ├── 201311140304289111.jpg │ ├── Debug │ └── Win32Project1.tlog │ │ └── Win32Project1.lastbuildstate │ ├── Win32Project1.vcxproj │ ├── Win32Project1.vcxproj.filters │ ├── chap6_0.jpg │ ├── crate.jpg │ ├── wall.jpg │ └── 源.cpp ├── DirectX透明效果 ├── Debug │ └── Win32Project5.exe ├── Win32Project5.sln └── Win32Project5 │ ├── 20131106041030261410.jpg │ ├── 201311140304289111.jpg │ ├── Debug │ ├── Win32Project5.res │ └── Win32Project5.tlog │ │ └── Win32Project5.lastbuildstate │ ├── ReadMe.txt │ ├── Resource.h │ ├── Win32Project5.cpp │ ├── Win32Project5.h │ ├── Win32Project5.ico │ ├── Win32Project5.rc │ ├── Win32Project5.vcxproj │ ├── Win32Project5.vcxproj.filters │ ├── chap6_0.jpg │ ├── crate.jpg │ ├── small.ico │ ├── stdafx.cpp │ ├── stdafx.h │ ├── targetver.h │ └── wall.jpg ├── Get LoadLibraryA shellcode(x64) ├── ConsoleApplication3.sln └── ConsoleApplication3 │ ├── ConsoleApplication3.cpp │ ├── ConsoleApplication3.vcxproj │ ├── ConsoleApplication3.vcxproj.filters │ ├── ReadMe.txt │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Get LoadLibraryA shellcode(x86) ├── ConsoleApplication3.sln ├── ConsoleApplication3 │ ├── ConsoleApplication3.cpp │ ├── ConsoleApplication3.vcxproj │ ├── ConsoleApplication3.vcxproj.filters │ ├── ReadMe.txt │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h └── Shellcode output tools │ └── ConsoleApplication3.sln ├── HOOK示例 ├── ConsoleApplication1.sln └── ConsoleApplication1 │ ├── ConsoleApplication1.cpp │ ├── ConsoleApplication1.vcxproj │ ├── ConsoleApplication1.vcxproj.filters │ ├── ConsoleApplication1.vcxproj.user │ ├── ReadMe.txt │ ├── Win32Project2.h │ ├── Win32Project2.lib │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── NDIS Intermediate Drivers(NDIS 5.1) ├── MyDriver4.sln ├── MyDriver4 │ ├── MyDriver4.vcxproj │ ├── MyDriver4.vcxproj.filters │ ├── MyDriver4.vcxproj.user │ ├── Passthru.inf │ ├── head.h │ ├── netsf_m.inf │ ├── struct.h │ └── 源.c └── x64 │ └── Win8Debug │ ├── MyDriver4 Package │ ├── Passthru.inf │ ├── Passthru.sys │ └── netsf_m.inf │ ├── Passthru.cer │ ├── Passthru.inf │ ├── Passthru.sys │ └── netsf_m.inf ├── NDIS NetWork Adapter Driver(KMDF Framework) ├── KMDF Driver2 Package │ ├── KMDF Driver2 Package.vcxproj │ ├── KMDF Driver2 Package.vcxproj.filters │ ├── Win7Debug │ │ ├── KMDF Dri.8C617AED.tlog │ │ │ └── KMDF Driver2 Package.lastbuildstate │ │ └── KMDF Driver2 Package.vcxprojResolveAssemblyReference.cache │ └── x64 │ │ ├── Win7Debug │ │ └── KMDF Dri.8C617AED.tlog │ │ │ ├── KMDF Driver2 Package.lastbuildstate │ │ │ └── unsuccessfulbuild │ │ ├── Win7Release │ │ └── KMDF Dri.8C617AED.tlog │ │ │ └── KMDF Driver2 Package.lastbuildstate │ │ ├── Win8.1Debug │ │ └── KMDF Dri.8C617AED.tlog │ │ │ └── KMDF Driver2 Package.lastbuildstate │ │ └── Win8Release │ │ └── KMDF Dri.8C617AED.tlog │ │ └── KMDF Driver2 Package.lastbuildstate ├── KMDF Driver2.sln ├── KMDF Driver2 │ ├── KMDF Driver2.vcxproj │ ├── KMDF Driver2.vcxproj.filters │ ├── Ndisedge.inx │ ├── Win7Debug │ │ └── KMDF Driver2.tlog │ │ │ └── KMDF Driver2.lastbuildstate │ ├── miniportfunction.h │ ├── x64 │ │ ├── Win7Debug │ │ │ ├── KMDF Driver2.tlog │ │ │ │ └── KMDF Driver2.lastbuildstate │ │ │ └── Ndisedge.inf │ │ ├── Win7Release │ │ │ └── KMDF Driver2.tlog │ │ │ │ ├── KMDF Driver2.lastbuildstate │ │ │ │ └── unsuccessfulbuild │ │ ├── Win8.1Debug │ │ │ └── KMDF Driver2.tlog │ │ │ │ └── KMDF Driver2.lastbuildstate │ │ └── Win8Release │ │ │ └── KMDF Driver2.tlog │ │ │ └── KMDF Driver2.lastbuildstate │ └── 源.c └── x64 │ ├── Win7Debug │ ├── KMDF Driver2 Package │ │ ├── KMDFDriver2.sys │ │ ├── Ndisedge.inf │ │ └── WdfCoinstaller01011.dll │ ├── KMDFDriver2.cer │ ├── KMDFDriver2.sys │ └── Ndisedge.inf │ └── Win8Debug │ └── Ndisedge.inf ├── NDIS protocol driver ├── MyDriver1.sln ├── MyDriver1 │ ├── MyDriver1.vcxproj │ ├── MyDriver1.vcxproj.filters │ ├── MyDriver1.vcxproj.user │ ├── Ndisprot.inf │ ├── Win7Debug │ │ └── MyDriver1.tlog │ │ │ ├── MyDriver1.lastbuildstate │ │ │ └── unsuccessfulbuild │ ├── protocol.h │ ├── x64 │ │ ├── Win8Debug │ │ │ ├── MyDriver1.tlog │ │ │ │ └── MyDriver1.lastbuildstate │ │ │ └── Ndisprot.inf │ │ └── Win8Release │ │ │ └── MyDriver1.tlog │ │ │ └── MyDriver1.lastbuildstate │ └── 源.c └── x64 │ └── Win8Debug │ ├── MyDriver1 Package │ ├── MyDriver1.sys │ └── Ndisprot.inf │ ├── MyDriver1.cer │ ├── MyDriver1.sys │ └── ndisprot.inf ├── PDH获取系统信息 ├── PDHTest.cpp ├── PDHTest.sln ├── PDHTest.vcxproj ├── PDHTest.vcxproj.filters ├── PDHTest.vcxproj.user ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── PE(portable executiom) structure.JPG ├── README.md ├── RPC通信示例 ├── client │ └── client │ │ ├── client.cpp │ │ ├── client.vcxproj │ │ ├── client.vcxproj.filters │ │ ├── client.vcxproj.user │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h └── server │ └── server │ ├── commondef.h │ ├── rpc.acf │ ├── rpc.idl │ ├── server.cpp │ ├── server.sln │ ├── server.vcxproj │ ├── server.vcxproj.filters │ ├── server.vcxproj.user │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── SSDT HOOK(64位) ├── MyDriver5 Package │ ├── MyDriver5 Package.vcxproj │ ├── MyDriver5 Package.vcxproj.backup │ ├── MyDriver5 Package.vcxproj.filters │ ├── MyDriver5 Package.vcxproj.user │ ├── Win7Debug │ │ └── MyDriver.C54BC88A.tlog │ │ │ └── MyDriver5 Package.lastbuildstate │ └── x64 │ │ ├── Win7Debug │ │ └── MyDriver.C54BC88A.tlog │ │ │ └── MyDriver5 Package.lastbuildstate │ │ ├── Win7Release │ │ ├── MyDriver.C54BC88A.tlog │ │ │ └── MyDriver5 Package.lastbuildstate │ │ └── MyDriver5 Package.vcxprojResolveAssemblyReference.cache │ │ ├── Win8.1Release │ │ └── MyDriver.C54BC88A.tlog │ │ │ └── MyDriver5 Package.lastbuildstate │ │ ├── Win8Debug │ │ ├── MyDriver.C54BC88A.tlog │ │ │ └── MyDriver5 Package.lastbuildstate │ │ └── MyDriver5 Package.vcxprojResolveAssemblyReference.cache │ │ └── Win8Release │ │ └── MyDriver.C54BC88A.tlog │ │ └── MyDriver5 Package.lastbuildstate ├── MyDriver5.sln ├── MyDriver5 │ ├── MyDriver5.vcxproj │ ├── MyDriver5.vcxproj.backup │ ├── MyDriver5.vcxproj.filters │ ├── Win7Debug │ │ └── MyDriver5.tlog │ │ │ └── MyDriver5.lastbuildstate │ ├── x64 │ │ ├── Win7Debug │ │ │ └── MyDriver5.tlog │ │ │ │ └── MyDriver5.lastbuildstate │ │ ├── Win7Release │ │ │ └── MyDriver5.tlog │ │ │ │ └── MyDriver5.lastbuildstate │ │ ├── Win8.1Release │ │ │ └── MyDriver5.tlog │ │ │ │ └── MyDriver5.lastbuildstate │ │ ├── Win8Debug │ │ │ └── MyDriver5.tlog │ │ │ │ └── MyDriver5.lastbuildstate │ │ └── Win8Release │ │ │ └── MyDriver5.tlog │ │ │ └── MyDriver5.lastbuildstate │ └── 源.c ├── Win7Debug │ ├── MyDriver5 Package │ │ └── MyDriver5.sys │ ├── MyDriver5.cer │ └── MyDriver5.sys └── x64 │ └── Win8Debug │ ├── MyDriver5 Package │ └── MyDriver5.sys │ ├── MyDriver5.cer │ ├── MyDriver5.sys │ └── MyDriver5 │ └── MyDriver5.sys ├── SSDT HOOK(32位) ├── MyDriver4 Package │ ├── MyDriver4 Package.vcxproj │ ├── MyDriver4 Package.vcxproj.filters │ ├── Win7Debug │ │ └── MyDriver.6A7640B7.tlog │ │ │ └── MyDriver4 Package.lastbuildstate │ ├── Win8Debug │ │ └── MyDriver.6A7640B7.tlog │ │ │ └── MyDriver4 Package.lastbuildstate │ └── x64 │ │ ├── Win7Debug │ │ └── MyDriver.6A7640B7.tlog │ │ │ ├── MyDriver4 Package.lastbuildstate │ │ │ └── unsuccessfulbuild │ │ └── Win8Debug │ │ └── MyDriver.6A7640B7.tlog │ │ └── MyDriver4 Package.lastbuildstate ├── MyDriver4.sln ├── MyDriver4 │ ├── MyDriver4.vcxproj │ ├── MyDriver4.vcxproj.filters │ ├── Win7Debug │ │ └── MyDriver4.tlog │ │ │ └── MyDriver4.lastbuildstate │ ├── Win8Debug │ │ └── MyDriver4.tlog │ │ │ └── MyDriver4.lastbuildstate │ ├── x64 │ │ ├── Win7Debug │ │ │ └── MyDriver4.tlog │ │ │ │ ├── MyDriver4.lastbuildstate │ │ │ │ └── unsuccessfulbuild │ │ └── Win8Debug │ │ │ └── MyDriver4.tlog │ │ │ └── MyDriver4.lastbuildstate │ └── 源.c └── Win7Debug │ ├── MyDriver4 Package │ └── MyDriver4.sys │ ├── MyDriver4.cer │ └── MyDriver4.sys ├── TDI network filter ├── MyDriver1.opensdf ├── MyDriver1.sln ├── MyDriver1 │ ├── MyDriver1.vcxproj │ ├── MyDriver1.vcxproj.filters │ ├── MyDriver1.vcxproj.user │ └── 源.c └── x64 │ └── Win8Debug │ ├── MyDriver1 Package │ └── MyDriver1.sys │ ├── MyDriver1.cer │ └── MyDriver1.sys ├── VirtualDisk ├── MyDriver1.sln ├── MyDriver1 │ ├── DevCon.h │ ├── IO.h │ ├── MyDriver1.vcxproj │ ├── MyDriver1.vcxproj.filters │ ├── MyDriver1.vcxproj.user │ ├── init.c │ ├── setup.inx │ └── struct.h └── 效果图.png ├── WSK(WinSock Kernel) driver ├── MyDriver4.opensdf ├── MyDriver4.sln ├── MyDriver4 │ ├── MyDriver4.inf │ ├── MyDriver4.vcxproj │ ├── MyDriver4.vcxproj.filters │ └── main.c └── x64 │ └── Win8Debug │ ├── MyDriver4 Package │ ├── MyDriver4.inf │ └── MyDriver4.sys │ ├── MyDriver4.cer │ ├── MyDriver4.inf │ └── MyDriver4.sys ├── Windows网络结构.vsdx ├── fastfat ├── Win7 │ ├── acchksup.c │ ├── allocsup.c │ ├── cachesup.c │ ├── cleanup.c │ ├── close.c │ ├── create.c │ ├── devctrl.c │ ├── deviosup.c │ ├── dirctrl.c │ ├── dirs │ ├── dirsup.c │ ├── dumpsup.c │ ├── ea.c │ ├── easup.c │ ├── fastfat.rc │ ├── fat.h │ ├── fatdata.c │ ├── fatdata.h │ ├── fatinit.c │ ├── fatprocs.h │ ├── fatstruc.h │ ├── fileinfo.c │ ├── filobsup.c │ ├── flush.c │ ├── fsctrl.c │ ├── fspdisp.c │ ├── lfn.h │ ├── lockctrl.c │ ├── mp │ │ ├── makefile │ │ └── sources │ ├── namesup.c │ ├── nodetype.h │ ├── pnp.c │ ├── read.c │ ├── resrcsup.c │ ├── shutdown.c │ ├── sources.inc │ ├── splaysup.c │ ├── strucsup.c │ ├── timesup.c │ ├── verfysup.c │ ├── volinfo.c │ ├── workque.c │ └── write.c ├── dirs ├── wlh │ ├── acchksup.c │ ├── allocsup.c │ ├── cachesup.c │ ├── cleanup.c │ ├── close.c │ ├── create.c │ ├── devctrl.c │ ├── deviosup.c │ ├── dirctrl.c │ ├── dirs │ ├── dirsup.c │ ├── dumpsup.c │ ├── ea.c │ ├── easup.c │ ├── fastfat.rc │ ├── fat.h │ ├── fatdata.c │ ├── fatdata.h │ ├── fatinit.c │ ├── fatprocs.h │ ├── fatstruc.h │ ├── fileinfo.c │ ├── filobsup.c │ ├── flush.c │ ├── fsctrl.c │ ├── fspdisp.c │ ├── lfn.h │ ├── lockctrl.c │ ├── mp │ │ ├── makefile │ │ └── sources │ ├── namesup.c │ ├── nodetype.h │ ├── pnp.c │ ├── read.c │ ├── resrcsup.c │ ├── shutdown.c │ ├── sources.inc │ ├── splaysup.c │ ├── strucsup.c │ ├── timesup.c │ ├── verfysup.c │ ├── volinfo.c │ ├── workque.c │ └── write.c ├── wnet │ ├── acchksup.c │ ├── allocsup.c │ ├── cachesup.c │ ├── cleanup.c │ ├── close.c │ ├── create.c │ ├── devctrl.c │ ├── deviosup.c │ ├── dirctrl.c │ ├── dirsup.c │ ├── dumpsup.c │ ├── ea.c │ ├── easup.c │ ├── fastfat.rc │ ├── fat.h │ ├── fatdata.c │ ├── fatdata.h │ ├── fatinit.c │ ├── fatprocs.h │ ├── fatstruc.h │ ├── fileinfo.c │ ├── filobsup.c │ ├── flush.c │ ├── fsctrl.c │ ├── fspdisp.c │ ├── lfn.h │ ├── lockctrl.c │ ├── makefile │ ├── namesup.c │ ├── nodetype.h │ ├── pnp.c │ ├── read.c │ ├── resrcsup.c │ ├── shutdown.c │ ├── sources │ ├── splaysup.c │ ├── strucsup.c │ ├── timesup.c │ ├── verfysup.c │ ├── volinfo.c │ ├── workque.c │ └── write.c └── wxp │ ├── acchksup.c │ ├── allocsup.c │ ├── cachesup.c │ ├── cleanup.c │ ├── close.c │ ├── create.c │ ├── devctrl.c │ ├── deviosup.c │ ├── dirctrl.c │ ├── dirsup.c │ ├── dumpsup.c │ ├── ea.c │ ├── easup.c │ ├── fastfat.rc │ ├── fat.h │ ├── fatdata.c │ ├── fatdata.h │ ├── fatinit.c │ ├── fatprocs.h │ ├── fatstruc.h │ ├── fileinfo.c │ ├── filobsup.c │ ├── flush.c │ ├── fsctrl.c │ ├── fspdisp.c │ ├── lfn.h │ ├── lockctrl.c │ ├── makefile │ ├── namesup.c │ ├── nodetype.h │ ├── pnp.c │ ├── read.c │ ├── resrcsup.c │ ├── shutdown.c │ ├── sources │ ├── splaysup.c │ ├── strucsup.c │ ├── timesup.c │ ├── verfysup.c │ ├── volinfo.c │ ├── workque.c │ └── write.c ├── hookbyzlz ├── hookbyzlz.sln └── hookbyzlz │ ├── ReadMe.txt │ ├── dllmain.cpp │ ├── hookbyzlz.cpp │ ├── hookbyzlz.h │ ├── hookbyzlz.vcxproj │ ├── hookbyzlz.vcxproj.filters │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── hook钩子注入 ├── Win32Project2.sln └── Win32Project2 │ ├── ReadMe.txt │ ├── Win32Project2.h │ ├── Win32Project2.vcxproj │ ├── Win32Project2.vcxproj.filters │ ├── Win32Project2.vcxproj.user │ ├── dllmain.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── keybord filter ├── MyDriver1 Package │ ├── MyDriver1 Package.vcxproj │ ├── MyDriver1 Package.vcxproj.filters │ ├── Win7Debug │ │ └── MyDriver.96BACFA0.tlog │ │ │ └── MyDriver1 Package.lastbuildstate │ └── x64 │ │ └── Win8Debug │ │ └── MyDriver.96BACFA0.tlog │ │ └── MyDriver1 Package.lastbuildstate ├── MyDriver1.sln ├── MyDriver1 │ ├── MyDriver1.vcxproj │ ├── MyDriver1.vcxproj.filters │ ├── Win7Debug │ │ └── MyDriver1.tlog │ │ │ └── MyDriver1.lastbuildstate │ ├── dasda.c │ └── x64 │ │ └── Win8Debug │ │ └── MyDriver1.tlog │ │ └── MyDriver1.lastbuildstate ├── Win7Debug │ ├── MyDriver1 Package │ │ └── MyDriver1.sys │ ├── MyDriver1.cer │ └── MyDriver1.sys └── x64 │ └── Win8Debug │ ├── MyDriver1 Package │ └── MyDriver1.sys │ ├── MyDriver1.cer │ └── MyDriver1.sys ├── minifliter (FLTMGR.sys) ├── MyDriver1.sln ├── MyDriver1 │ ├── MyDriver1.vcxproj │ ├── MyDriver1.vcxproj.filters │ └── 源.c ├── NPminifilter.inf └── x64 │ └── Win8Debug │ ├── MyDriver1 Package │ ├── MyDriver1.sys │ └── NPminifilter.inf │ ├── MyDriver1.cer │ ├── MyDriver1.sys │ ├── NPminifilter.inf │ └── flt.sys ├── my-Little-Ransomware-master ├── LICENSE ├── README.md ├── Ransomware │ ├── Ransomware.sln │ └── Ransomware │ │ ├── Module.cs │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── Ransomware.csproj │ │ └── app.manifest ├── decryptoTool │ ├── cuteRansomware.sln │ └── decryptoTool │ │ ├── Module.cs │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ └── decryptoTool.csproj └── releaseBinary │ └── Ransomware.vshost.exe.manifest ├── ntfs文件过滤驱动 ├── FSFilter.VC.VC.opendb ├── FSFilter.sln ├── FSFilter │ ├── AttachDetach.c │ ├── FSFilter.vcxproj │ ├── FSFilter.vcxproj.filters │ ├── FastIo.c │ ├── FsFilter.h │ ├── IrpDispatch.c │ ├── Main.c │ ├── Notification.c │ ├── Read.c │ ├── Read.h │ ├── Write.c │ ├── Write.h │ ├── debug-macros.h │ └── install.cmd └── install.cmd ├── windows filter platform(WFP) driver ├── MyDriver4 Package │ ├── MyDriver4 Package.vcxproj │ ├── MyDriver4 Package.vcxproj.filters │ └── x64 │ │ └── Win8Debug │ │ └── MyDriver.5A2B20F5.tlog │ │ └── MyDriver4 Package.lastbuildstate ├── MyDriver4.opensdf ├── MyDriver4.sln ├── MyDriver4 │ ├── MyDriver4.vcxproj │ ├── MyDriver4.vcxproj.filters │ ├── x64 │ │ └── Win8Debug │ │ │ └── MyDriver4.tlog │ │ │ └── MyDriver4.lastbuildstate │ └── 源.c └── x64 │ └── Win8Debug │ ├── MyDriver4 Package │ └── MyDriver4.sys │ ├── MyDriver4.cer │ └── MyDriver4.sys ├── x64dbg仿OD皮肤.ini ├── 任务管理器 ├── Win32Project1.sln └── Win32Project1 │ ├── Win32Project1.aps │ ├── Win32Project1.cpp │ ├── Win32Project1.h │ ├── Win32Project1.ico │ ├── Win32Project1.rc │ ├── Win32Project1.vcxproj │ ├── Win32Project1.vcxproj.filters │ ├── Win32Project1.vcxproj.user │ ├── resource.h │ ├── small.ico │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── 内核下枚举进程 ├── MyDriver5.sln ├── MyDriver5 │ ├── MyDriver5.inf │ ├── MyDriver5.vcxproj │ ├── MyDriver5.vcxproj.filters │ ├── MyDriver5.vcxproj.user │ └── 源.c └── x64 │ └── Win8Debug │ ├── MyDriver5 Package │ ├── MyDriver5.inf │ └── MyDriver5.sys │ ├── MyDriver5.cer │ ├── MyDriver5.inf │ └── MyDriver5.sys ├── 利用WMI信息进行反调试 ├── ConsoleApplication4.sln ├── ConsoleApplication4 │ ├── ConsoleApplication4.cpp │ ├── ConsoleApplication4.vcxproj │ ├── ConsoleApplication4.vcxproj.filters │ ├── ReadMe.txt │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h └── 利用PowerShell查看WMI信息.png ├── 查看Dll函数 ├── ConsoleApplication3.sln └── ConsoleApplication3 │ ├── ConsoleApplication3.cpp │ ├── ConsoleApplication3.vcxproj │ ├── ConsoleApplication3.vcxproj.filters │ ├── ReadMe.txt │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── 获取GDT表内容 ├── MyDriver5.sln ├── MyDriver5 │ ├── MyDriver5.vcxproj │ ├── MyDriver5.vcxproj.filters │ └── 源.c └── x64 │ └── Win8Debug │ ├── MyDriver5 Package │ └── MyDriver5.sys │ ├── MyDriver5.cer │ └── MyDriver5.sys ├── 获取PEB32地址 ├── ConsoleApplication4.sln ├── ConsoleApplication4 │ ├── ConsoleApplication4.cpp │ ├── ConsoleApplication4.vcxproj │ ├── ConsoleApplication4.vcxproj.filters │ ├── ReadMe.txt │ ├── ntddk.h │ ├── ntdll_types.h │ ├── ntdll_undoc.cpp │ ├── ntdll_undoc.h │ ├── pe_hdrs_helper.cpp │ ├── pe_hdrs_helper.h │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h └── x64 │ └── Debug │ └── ConsoleApplication4.exe ├── 远程注入器 ├── injectx64 │ ├── ConsoleApplication1.VC.VC.opendb │ ├── ConsoleApplication1.sln │ └── ConsoleApplication1 │ │ ├── ConsoleApplication1.cpp │ │ ├── ConsoleApplication1.vcxproj │ │ ├── ConsoleApplication1.vcxproj.filters │ │ ├── ConsoleApplication1.vcxproj.user │ │ ├── ReadMe.txt │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h └── injectx86 │ ├── ConsoleApplication7.sln │ └── ConsoleApplication7 │ ├── ConsoleApplication7.cpp │ ├── ConsoleApplication7.vcxproj │ ├── ConsoleApplication7.vcxproj.filters │ ├── ReadMe.txt │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── 遍历进程 ├── ConsoleApplication8.sln └── ConsoleApplication8 │ ├── ConsoleApplication8.cpp │ ├── ConsoleApplication8.vcxproj │ ├── ConsoleApplication8.vcxproj.filters │ ├── ReadMe.txt │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h └── 重载运算符的问题 ├── ConsoleApplication1.sln └── ConsoleApplication1 ├── ConsoleApplication1.cpp ├── ConsoleApplication1.vcxproj ├── ConsoleApplication1.vcxproj.filters ├── ReadMe.txt ├── stdafx.cpp ├── stdafx.h └── targetver.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/.gitignore -------------------------------------------------------------------------------- /80 port reuse demo(TDI structure)/con remote/ConsoleApplication1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/80 port reuse demo(TDI structure)/con remote/ConsoleApplication1.sln -------------------------------------------------------------------------------- /80 port reuse demo(TDI structure)/con remote/ConsoleApplication1/ConsoleApplication1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/80 port reuse demo(TDI structure)/con remote/ConsoleApplication1/ConsoleApplication1.cpp -------------------------------------------------------------------------------- /80 port reuse demo(TDI structure)/con remote/ConsoleApplication1/ConsoleApplication1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/80 port reuse demo(TDI structure)/con remote/ConsoleApplication1/ConsoleApplication1.vcxproj -------------------------------------------------------------------------------- /80 port reuse demo(TDI structure)/con remote/ConsoleApplication1/ConsoleApplication1.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/80 port reuse demo(TDI structure)/con remote/ConsoleApplication1/ConsoleApplication1.vcxproj.filters -------------------------------------------------------------------------------- /80 port reuse demo(TDI structure)/con remote/ConsoleApplication1/ConsoleApplication1.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/80 port reuse demo(TDI structure)/con remote/ConsoleApplication1/ConsoleApplication1.vcxproj.user -------------------------------------------------------------------------------- /80 port reuse demo(TDI structure)/con remote/ConsoleApplication1/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/80 port reuse demo(TDI structure)/con remote/ConsoleApplication1/ReadMe.txt -------------------------------------------------------------------------------- /80 port reuse demo(TDI structure)/con remote/ConsoleApplication1/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/80 port reuse demo(TDI structure)/con remote/ConsoleApplication1/stdafx.cpp -------------------------------------------------------------------------------- /80 port reuse demo(TDI structure)/con remote/ConsoleApplication1/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/80 port reuse demo(TDI structure)/con remote/ConsoleApplication1/stdafx.h -------------------------------------------------------------------------------- /80 port reuse demo(TDI structure)/con remote/ConsoleApplication1/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/80 port reuse demo(TDI structure)/con remote/ConsoleApplication1/targetver.h -------------------------------------------------------------------------------- /80 port reuse demo(TDI structure)/sys/MyDriver6.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/80 port reuse demo(TDI structure)/sys/MyDriver6.sln -------------------------------------------------------------------------------- /80 port reuse demo(TDI structure)/sys/MyDriver6/MyDriver6.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/80 port reuse demo(TDI structure)/sys/MyDriver6/MyDriver6.vcxproj -------------------------------------------------------------------------------- /80 port reuse demo(TDI structure)/sys/MyDriver6/MyDriver6.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/80 port reuse demo(TDI structure)/sys/MyDriver6/MyDriver6.vcxproj.filters -------------------------------------------------------------------------------- /80 port reuse demo(TDI structure)/sys/MyDriver6/conn_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/80 port reuse demo(TDI structure)/sys/MyDriver6/conn_state.h -------------------------------------------------------------------------------- /80 port reuse demo(TDI structure)/sys/MyDriver6/dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/80 port reuse demo(TDI structure)/sys/MyDriver6/dispatch.h -------------------------------------------------------------------------------- /80 port reuse demo(TDI structure)/sys/MyDriver6/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/80 port reuse demo(TDI structure)/sys/MyDriver6/events.h -------------------------------------------------------------------------------- /80 port reuse demo(TDI structure)/sys/MyDriver6/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/80 port reuse demo(TDI structure)/sys/MyDriver6/filter.h -------------------------------------------------------------------------------- /80 port reuse demo(TDI structure)/sys/MyDriver6/head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/80 port reuse demo(TDI structure)/sys/MyDriver6/head.h -------------------------------------------------------------------------------- /80 port reuse demo(TDI structure)/sys/MyDriver6/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/80 port reuse demo(TDI structure)/sys/MyDriver6/ipc.h -------------------------------------------------------------------------------- /80 port reuse demo(TDI structure)/sys/MyDriver6/memtrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/80 port reuse demo(TDI structure)/sys/MyDriver6/memtrack.h -------------------------------------------------------------------------------- /80 port reuse demo(TDI structure)/sys/MyDriver6/ndis_hk_ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/80 port reuse demo(TDI structure)/sys/MyDriver6/ndis_hk_ioctl.h -------------------------------------------------------------------------------- /80 port reuse demo(TDI structure)/sys/MyDriver6/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/80 port reuse demo(TDI structure)/sys/MyDriver6/net.h -------------------------------------------------------------------------------- /80 port reuse demo(TDI structure)/sys/MyDriver6/obj_tbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/80 port reuse demo(TDI structure)/sys/MyDriver6/obj_tbl.h -------------------------------------------------------------------------------- /80 port reuse demo(TDI structure)/sys/MyDriver6/packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/80 port reuse demo(TDI structure)/sys/MyDriver6/packet.h -------------------------------------------------------------------------------- /80 port reuse demo(TDI structure)/sys/MyDriver6/pid_pname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/80 port reuse demo(TDI structure)/sys/MyDriver6/pid_pname.h -------------------------------------------------------------------------------- /80 port reuse demo(TDI structure)/sys/MyDriver6/sids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/80 port reuse demo(TDI structure)/sys/MyDriver6/sids.h -------------------------------------------------------------------------------- /80 port reuse demo(TDI structure)/sys/MyDriver6/sock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/80 port reuse demo(TDI structure)/sys/MyDriver6/sock.h -------------------------------------------------------------------------------- /80 port reuse demo(TDI structure)/sys/MyDriver6/tdi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/80 port reuse demo(TDI structure)/sys/MyDriver6/tdi.c -------------------------------------------------------------------------------- /80 port reuse demo(TDI structure)/sys/MyDriver6/tdi_fw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/80 port reuse demo(TDI structure)/sys/MyDriver6/tdi_fw.h -------------------------------------------------------------------------------- /80 port reuse demo(TDI structure)/sys/MyDriver6/tdi_fw_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/80 port reuse demo(TDI structure)/sys/MyDriver6/tdi_fw_lib.h -------------------------------------------------------------------------------- /80 port reuse demo(TDI structure)/sys/x64/Win8Debug/MyDriver6 Package/MyDriver6.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/80 port reuse demo(TDI structure)/sys/x64/Win8Debug/MyDriver6 Package/MyDriver6.sys -------------------------------------------------------------------------------- /80 port reuse demo(TDI structure)/sys/x64/Win8Debug/MyDriver6.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/80 port reuse demo(TDI structure)/sys/x64/Win8Debug/MyDriver6.cer -------------------------------------------------------------------------------- /80 port reuse demo(TDI structure)/sys/x64/Win8Debug/MyDriver6.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/80 port reuse demo(TDI structure)/sys/x64/Win8Debug/MyDriver6.sys -------------------------------------------------------------------------------- /80 port reuse demo(TDI structure)/sys/x64/Win8Release/MyDriver6 Package/MyDriver6.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/80 port reuse demo(TDI structure)/sys/x64/Win8Release/MyDriver6 Package/MyDriver6.inf -------------------------------------------------------------------------------- /80 port reuse demo(TDI structure)/sys/x64/Win8Release/MyDriver6.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/80 port reuse demo(TDI structure)/sys/x64/Win8Release/MyDriver6.inf -------------------------------------------------------------------------------- /80 port reuse demo(TDI structure)/使用说明.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/80 port reuse demo(TDI structure)/使用说明.docx -------------------------------------------------------------------------------- /80 port reuse demo(TDI structure)/服务器返回数据(device con)(需先运行链接到远程主机)/ConsoleApplication3 control.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/80 port reuse demo(TDI structure)/服务器返回数据(device con)(需先运行链接到远程主机)/ConsoleApplication3 control.sln -------------------------------------------------------------------------------- /80 port reuse demo(TDI structure)/服务器返回数据(device con)(需先运行链接到远程主机)/ConsoleApplication3 control/ConsoleApplication3 control.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/80 port reuse demo(TDI structure)/服务器返回数据(device con)(需先运行链接到远程主机)/ConsoleApplication3 control/ConsoleApplication3 control.cpp -------------------------------------------------------------------------------- /80 port reuse demo(TDI structure)/服务器返回数据(device con)(需先运行链接到远程主机)/ConsoleApplication3 control/ConsoleApplication3 control.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/80 port reuse demo(TDI structure)/服务器返回数据(device con)(需先运行链接到远程主机)/ConsoleApplication3 control/ConsoleApplication3 control.vcxproj -------------------------------------------------------------------------------- /80 port reuse demo(TDI structure)/服务器返回数据(device con)(需先运行链接到远程主机)/ConsoleApplication3 control/ConsoleApplication3 control.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/80 port reuse demo(TDI structure)/服务器返回数据(device con)(需先运行链接到远程主机)/ConsoleApplication3 control/ConsoleApplication3 control.vcxproj.filters -------------------------------------------------------------------------------- /80 port reuse demo(TDI structure)/服务器返回数据(device con)(需先运行链接到远程主机)/ConsoleApplication3 control/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/80 port reuse demo(TDI structure)/服务器返回数据(device con)(需先运行链接到远程主机)/ConsoleApplication3 control/ReadMe.txt -------------------------------------------------------------------------------- /80 port reuse demo(TDI structure)/服务器返回数据(device con)(需先运行链接到远程主机)/ConsoleApplication3 control/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/80 port reuse demo(TDI structure)/服务器返回数据(device con)(需先运行链接到远程主机)/ConsoleApplication3 control/stdafx.cpp -------------------------------------------------------------------------------- /80 port reuse demo(TDI structure)/服务器返回数据(device con)(需先运行链接到远程主机)/ConsoleApplication3 control/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/80 port reuse demo(TDI structure)/服务器返回数据(device con)(需先运行链接到远程主机)/ConsoleApplication3 control/stdafx.h -------------------------------------------------------------------------------- /80 port reuse demo(TDI structure)/服务器返回数据(device con)(需先运行链接到远程主机)/ConsoleApplication3 control/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/80 port reuse demo(TDI structure)/服务器返回数据(device con)(需先运行链接到远程主机)/ConsoleApplication3 control/targetver.h -------------------------------------------------------------------------------- /DirectX walk on terrian/Debug/Win32Project3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX walk on terrian/Debug/Win32Project3.exe -------------------------------------------------------------------------------- /DirectX walk on terrian/Release/Win32Project3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX walk on terrian/Release/Win32Project3.exe -------------------------------------------------------------------------------- /DirectX walk on terrian/Win32Project3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX walk on terrian/Win32Project3.sln -------------------------------------------------------------------------------- /DirectX walk on terrian/Win32Project3/20131106041030261410.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX walk on terrian/Win32Project3/20131106041030261410.jpg -------------------------------------------------------------------------------- /DirectX walk on terrian/Win32Project3/201311140304289111.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX walk on terrian/Win32Project3/201311140304289111.jpg -------------------------------------------------------------------------------- /DirectX walk on terrian/Win32Project3/Debug/Win32Project3.tlog/Win32Project3.lastbuildstate: -------------------------------------------------------------------------------- 1 | #TargetFrameworkVersion=v4.0:PlatformToolSet=v120:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit 2 | Debug|Win32|I:\VS2013工程文件\DirectX地形效果\| 3 | -------------------------------------------------------------------------------- /DirectX walk on terrian/Win32Project3/Release/Win32Project3.tlog/Win32Project3.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX walk on terrian/Win32Project3/Release/Win32Project3.tlog/Win32Project3.lastbuildstate -------------------------------------------------------------------------------- /DirectX walk on terrian/Win32Project3/Win32Project3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX walk on terrian/Win32Project3/Win32Project3.exe -------------------------------------------------------------------------------- /DirectX walk on terrian/Win32Project3/Win32Project3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX walk on terrian/Win32Project3/Win32Project3.vcxproj -------------------------------------------------------------------------------- /DirectX walk on terrian/Win32Project3/Win32Project3.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX walk on terrian/Win32Project3/Win32Project3.vcxproj.filters -------------------------------------------------------------------------------- /DirectX walk on terrian/Win32Project3/Win32Project3.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX walk on terrian/Win32Project3/Win32Project3.vcxproj.user -------------------------------------------------------------------------------- /DirectX walk on terrian/Win32Project3/asd.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX walk on terrian/Win32Project3/asd.raw -------------------------------------------------------------------------------- /DirectX walk on terrian/Win32Project3/coastMountain64.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX walk on terrian/Win32Project3/coastMountain64.raw -------------------------------------------------------------------------------- /DirectX walk on terrian/Win32Project3/crate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX walk on terrian/Win32Project3/crate.jpg -------------------------------------------------------------------------------- /DirectX walk on terrian/Win32Project3/desert.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX walk on terrian/Win32Project3/desert.bmp -------------------------------------------------------------------------------- /DirectX walk on terrian/Win32Project3/grass.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX walk on terrian/Win32Project3/grass.jpg -------------------------------------------------------------------------------- /DirectX walk on terrian/Win32Project3/snow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX walk on terrian/Win32Project3/snow.jpg -------------------------------------------------------------------------------- /DirectX walk on terrian/Win32Project3/terrian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX walk on terrian/Win32Project3/terrian.h -------------------------------------------------------------------------------- /DirectX walk on terrian/Win32Project3/wall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX walk on terrian/Win32Project3/wall.jpg -------------------------------------------------------------------------------- /DirectX walk on terrian/Win32Project3/源.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX walk on terrian/Win32Project3/源.cpp -------------------------------------------------------------------------------- /DirectX Mirror effect/Debug/Win32Project1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX Mirror effect/Debug/Win32Project1.exe -------------------------------------------------------------------------------- /DirectX Mirror effect/Win32Project1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX Mirror effect/Win32Project1.sln -------------------------------------------------------------------------------- /DirectX Mirror effect/Win32Project1/201311140304289111.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX Mirror effect/Win32Project1/201311140304289111.jpg -------------------------------------------------------------------------------- /DirectX Mirror effect/Win32Project1/Debug/Win32Project1.tlog/Win32Project1.lastbuildstate: -------------------------------------------------------------------------------- 1 | #TargetFrameworkVersion=v4.0:PlatformToolSet=v120:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit 2 | Debug|Win32|I:\VS2013工程文件\DirectX镜面效果\| 3 | -------------------------------------------------------------------------------- /DirectX Mirror effect/Win32Project1/Win32Project1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX Mirror effect/Win32Project1/Win32Project1.vcxproj -------------------------------------------------------------------------------- /DirectX Mirror effect/Win32Project1/Win32Project1.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX Mirror effect/Win32Project1/Win32Project1.vcxproj.filters -------------------------------------------------------------------------------- /DirectX Mirror effect/Win32Project1/crate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX Mirror effect/Win32Project1/crate.jpg -------------------------------------------------------------------------------- /DirectX Mirror effect/Win32Project1/ice.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX Mirror effect/Win32Project1/ice.bmp -------------------------------------------------------------------------------- /DirectX Mirror effect/Win32Project1/wall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX Mirror effect/Win32Project1/wall.jpg -------------------------------------------------------------------------------- /DirectX Mirror effect/Win32Project1/源.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX Mirror effect/Win32Project1/源.cpp -------------------------------------------------------------------------------- /DirectX firework and snow/Debug/Win32Project1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX firework and snow/Debug/Win32Project1.exe -------------------------------------------------------------------------------- /DirectX firework and snow/Win32Project1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX firework and snow/Win32Project1.sln -------------------------------------------------------------------------------- /DirectX firework and snow/Win32Project1/20131106041030261410.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX firework and snow/Win32Project1/20131106041030261410.jpg -------------------------------------------------------------------------------- /DirectX firework and snow/Win32Project1/201311140304289111.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX firework and snow/Win32Project1/201311140304289111.jpg -------------------------------------------------------------------------------- /DirectX firework and snow/Win32Project1/Debug/Win32Project1.tlog/Win32Project1.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX firework and snow/Win32Project1/Debug/Win32Project1.tlog/Win32Project1.lastbuildstate -------------------------------------------------------------------------------- /DirectX firework and snow/Win32Project1/Win32Project1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX firework and snow/Win32Project1/Win32Project1.vcxproj -------------------------------------------------------------------------------- /DirectX firework and snow/Win32Project1/Win32Project1.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX firework and snow/Win32Project1/Win32Project1.vcxproj.filters -------------------------------------------------------------------------------- /DirectX firework and snow/Win32Project1/Win32Project1.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX firework and snow/Win32Project1/Win32Project1.vcxproj.user -------------------------------------------------------------------------------- /DirectX firework and snow/Win32Project1/bigship1.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX firework and snow/Win32Project1/bigship1.x -------------------------------------------------------------------------------- /DirectX firework and snow/Win32Project1/crate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX firework and snow/Win32Project1/crate.jpg -------------------------------------------------------------------------------- /DirectX firework and snow/Win32Project1/flare.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX firework and snow/Win32Project1/flare.bmp -------------------------------------------------------------------------------- /DirectX firework and snow/Win32Project1/jl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX firework and snow/Win32Project1/jl.h -------------------------------------------------------------------------------- /DirectX firework and snow/Win32Project1/snowflake.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX firework and snow/Win32Project1/snowflake.dds -------------------------------------------------------------------------------- /DirectX firework and snow/Win32Project1/wall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX firework and snow/Win32Project1/wall.jpg -------------------------------------------------------------------------------- /DirectX firework and snow/Win32Project1/源.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX firework and snow/Win32Project1/源.cpp -------------------------------------------------------------------------------- /DirectX movie/Win32Project2/Debug/Win32Project2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX movie/Win32Project2/Debug/Win32Project2.res -------------------------------------------------------------------------------- /DirectX movie/Win32Project2/Debug/Win32Project2.tlog/Win32Project2.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX movie/Win32Project2/Debug/Win32Project2.tlog/Win32Project2.lastbuildstate -------------------------------------------------------------------------------- /DirectX movie/Win32Project2/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX movie/Win32Project2/ReadMe.txt -------------------------------------------------------------------------------- /DirectX movie/Win32Project2/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX movie/Win32Project2/Resource.h -------------------------------------------------------------------------------- /DirectX movie/Win32Project2/Win32Project2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX movie/Win32Project2/Win32Project2.cpp -------------------------------------------------------------------------------- /DirectX movie/Win32Project2/Win32Project2.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /DirectX movie/Win32Project2/Win32Project2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX movie/Win32Project2/Win32Project2.ico -------------------------------------------------------------------------------- /DirectX movie/Win32Project2/Win32Project2.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX movie/Win32Project2/Win32Project2.rc -------------------------------------------------------------------------------- /DirectX movie/Win32Project2/Win32Project2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX movie/Win32Project2/Win32Project2.vcxproj -------------------------------------------------------------------------------- /DirectX movie/Win32Project2/Win32Project2.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX movie/Win32Project2/Win32Project2.vcxproj.filters -------------------------------------------------------------------------------- /DirectX movie/Win32Project2/small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX movie/Win32Project2/small.ico -------------------------------------------------------------------------------- /DirectX movie/Win32Project2/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX movie/Win32Project2/stdafx.cpp -------------------------------------------------------------------------------- /DirectX movie/Win32Project2/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX movie/Win32Project2/stdafx.h -------------------------------------------------------------------------------- /DirectX movie/Win32Project2/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX movie/Win32Project2/targetver.h -------------------------------------------------------------------------------- /DirectX动画完善版/Debug/Win32Project2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX动画完善版/Debug/Win32Project2.exe -------------------------------------------------------------------------------- /DirectX动画完善版/Win32Project2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX动画完善版/Win32Project2.sln -------------------------------------------------------------------------------- /DirectX动画完善版/Win32Project2/20131106041030261410.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX动画完善版/Win32Project2/20131106041030261410.jpg -------------------------------------------------------------------------------- /DirectX动画完善版/Win32Project2/201311140304289111.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX动画完善版/Win32Project2/201311140304289111.jpg -------------------------------------------------------------------------------- /DirectX动画完善版/Win32Project2/Debug/Win32Project2.tlog/Win32Project2.lastbuildstate: -------------------------------------------------------------------------------- 1 | #TargetFrameworkVersion=v4.0:PlatformToolSet=v120:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit 2 | Debug|Win32|I:\VS2013工程文件\DirectX动画完善版\| 3 | -------------------------------------------------------------------------------- /DirectX动画完善版/Win32Project2/Win32Project2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX动画完善版/Win32Project2/Win32Project2.vcxproj -------------------------------------------------------------------------------- /DirectX动画完善版/Win32Project2/Win32Project2.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX动画完善版/Win32Project2/Win32Project2.vcxproj.filters -------------------------------------------------------------------------------- /DirectX动画完善版/Win32Project2/chap6_0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX动画完善版/Win32Project2/chap6_0.jpg -------------------------------------------------------------------------------- /DirectX动画完善版/Win32Project2/crate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX动画完善版/Win32Project2/crate.jpg -------------------------------------------------------------------------------- /DirectX动画完善版/Win32Project2/wall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX动画完善版/Win32Project2/wall.jpg -------------------------------------------------------------------------------- /DirectX动画完善版/Win32Project2/源.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX动画完善版/Win32Project2/源.cpp -------------------------------------------------------------------------------- /DirectX相机第一人称视角/Debug/Win32Project3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX相机第一人称视角/Debug/Win32Project3.exe -------------------------------------------------------------------------------- /DirectX相机第一人称视角/Release/20131106041030261410.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX相机第一人称视角/Release/20131106041030261410.jpg -------------------------------------------------------------------------------- /DirectX相机第一人称视角/Release/201311140304289111.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX相机第一人称视角/Release/201311140304289111.jpg -------------------------------------------------------------------------------- /DirectX相机第一人称视角/Release/Release.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX相机第一人称视角/Release/Release.zip -------------------------------------------------------------------------------- /DirectX相机第一人称视角/Release/Win32Project3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX相机第一人称视角/Release/Win32Project3.exe -------------------------------------------------------------------------------- /DirectX相机第一人称视角/Release/bigship1.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX相机第一人称视角/Release/bigship1.x -------------------------------------------------------------------------------- /DirectX相机第一人称视角/Release/crate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX相机第一人称视角/Release/crate.jpg -------------------------------------------------------------------------------- /DirectX相机第一人称视角/Release/wall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX相机第一人称视角/Release/wall.jpg -------------------------------------------------------------------------------- /DirectX相机第一人称视角/Win32Project3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX相机第一人称视角/Win32Project3.sln -------------------------------------------------------------------------------- /DirectX相机第一人称视角/Win32Project3/20131106041030261410.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX相机第一人称视角/Win32Project3/20131106041030261410.jpg -------------------------------------------------------------------------------- /DirectX相机第一人称视角/Win32Project3/201311140304289111.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX相机第一人称视角/Win32Project3/201311140304289111.jpg -------------------------------------------------------------------------------- /DirectX相机第一人称视角/Win32Project3/Debug/Win32Project3.tlog/Win32Project3.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX相机第一人称视角/Win32Project3/Debug/Win32Project3.tlog/Win32Project3.lastbuildstate -------------------------------------------------------------------------------- /DirectX相机第一人称视角/Win32Project3/Release/Win32Project3.tlog/Win32Project3.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX相机第一人称视角/Win32Project3/Release/Win32Project3.tlog/Win32Project3.lastbuildstate -------------------------------------------------------------------------------- /DirectX相机第一人称视角/Win32Project3/Win32Project3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX相机第一人称视角/Win32Project3/Win32Project3.vcxproj -------------------------------------------------------------------------------- /DirectX相机第一人称视角/Win32Project3/Win32Project3.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX相机第一人称视角/Win32Project3/Win32Project3.vcxproj.filters -------------------------------------------------------------------------------- /DirectX相机第一人称视角/Win32Project3/Win32Project3.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX相机第一人称视角/Win32Project3/Win32Project3.vcxproj.user -------------------------------------------------------------------------------- /DirectX相机第一人称视角/Win32Project3/bigship1.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX相机第一人称视角/Win32Project3/bigship1.x -------------------------------------------------------------------------------- /DirectX相机第一人称视角/Win32Project3/crate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX相机第一人称视角/Win32Project3/crate.jpg -------------------------------------------------------------------------------- /DirectX相机第一人称视角/Win32Project3/wall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX相机第一人称视角/Win32Project3/wall.jpg -------------------------------------------------------------------------------- /DirectX相机第一人称视角/Win32Project3/源.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX相机第一人称视角/Win32Project3/源.cpp -------------------------------------------------------------------------------- /DirectX计算FPS以及3D文字显示/Debug/Win32Project1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX计算FPS以及3D文字显示/Debug/Win32Project1.exe -------------------------------------------------------------------------------- /DirectX计算FPS以及3D文字显示/Win32Project1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX计算FPS以及3D文字显示/Win32Project1.sln -------------------------------------------------------------------------------- /DirectX计算FPS以及3D文字显示/Win32Project1/20131106041030261410.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX计算FPS以及3D文字显示/Win32Project1/20131106041030261410.jpg -------------------------------------------------------------------------------- /DirectX计算FPS以及3D文字显示/Win32Project1/201311140304289111.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX计算FPS以及3D文字显示/Win32Project1/201311140304289111.jpg -------------------------------------------------------------------------------- /DirectX计算FPS以及3D文字显示/Win32Project1/Debug/Win32Project1.tlog/Win32Project1.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX计算FPS以及3D文字显示/Win32Project1/Debug/Win32Project1.tlog/Win32Project1.lastbuildstate -------------------------------------------------------------------------------- /DirectX计算FPS以及3D文字显示/Win32Project1/Win32Project1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX计算FPS以及3D文字显示/Win32Project1/Win32Project1.vcxproj -------------------------------------------------------------------------------- /DirectX计算FPS以及3D文字显示/Win32Project1/Win32Project1.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX计算FPS以及3D文字显示/Win32Project1/Win32Project1.vcxproj.filters -------------------------------------------------------------------------------- /DirectX计算FPS以及3D文字显示/Win32Project1/chap6_0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX计算FPS以及3D文字显示/Win32Project1/chap6_0.jpg -------------------------------------------------------------------------------- /DirectX计算FPS以及3D文字显示/Win32Project1/crate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX计算FPS以及3D文字显示/Win32Project1/crate.jpg -------------------------------------------------------------------------------- /DirectX计算FPS以及3D文字显示/Win32Project1/wall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX计算FPS以及3D文字显示/Win32Project1/wall.jpg -------------------------------------------------------------------------------- /DirectX计算FPS以及3D文字显示/Win32Project1/源.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX计算FPS以及3D文字显示/Win32Project1/源.cpp -------------------------------------------------------------------------------- /DirectX透明效果/Debug/Win32Project5.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX透明效果/Debug/Win32Project5.exe -------------------------------------------------------------------------------- /DirectX透明效果/Win32Project5.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX透明效果/Win32Project5.sln -------------------------------------------------------------------------------- /DirectX透明效果/Win32Project5/20131106041030261410.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX透明效果/Win32Project5/20131106041030261410.jpg -------------------------------------------------------------------------------- /DirectX透明效果/Win32Project5/201311140304289111.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX透明效果/Win32Project5/201311140304289111.jpg -------------------------------------------------------------------------------- /DirectX透明效果/Win32Project5/Debug/Win32Project5.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX透明效果/Win32Project5/Debug/Win32Project5.res -------------------------------------------------------------------------------- /DirectX透明效果/Win32Project5/Debug/Win32Project5.tlog/Win32Project5.lastbuildstate: -------------------------------------------------------------------------------- 1 | #TargetFrameworkVersion=v4.0:PlatformToolSet=v120:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit 2 | Debug|Win32|I:\VS2013工程文件\DirectX透明效果\| 3 | -------------------------------------------------------------------------------- /DirectX透明效果/Win32Project5/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX透明效果/Win32Project5/ReadMe.txt -------------------------------------------------------------------------------- /DirectX透明效果/Win32Project5/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX透明效果/Win32Project5/Resource.h -------------------------------------------------------------------------------- /DirectX透明效果/Win32Project5/Win32Project5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX透明效果/Win32Project5/Win32Project5.cpp -------------------------------------------------------------------------------- /DirectX透明效果/Win32Project5/Win32Project5.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /DirectX透明效果/Win32Project5/Win32Project5.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX透明效果/Win32Project5/Win32Project5.ico -------------------------------------------------------------------------------- /DirectX透明效果/Win32Project5/Win32Project5.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX透明效果/Win32Project5/Win32Project5.rc -------------------------------------------------------------------------------- /DirectX透明效果/Win32Project5/Win32Project5.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX透明效果/Win32Project5/Win32Project5.vcxproj -------------------------------------------------------------------------------- /DirectX透明效果/Win32Project5/Win32Project5.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX透明效果/Win32Project5/Win32Project5.vcxproj.filters -------------------------------------------------------------------------------- /DirectX透明效果/Win32Project5/chap6_0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX透明效果/Win32Project5/chap6_0.jpg -------------------------------------------------------------------------------- /DirectX透明效果/Win32Project5/crate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX透明效果/Win32Project5/crate.jpg -------------------------------------------------------------------------------- /DirectX透明效果/Win32Project5/small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX透明效果/Win32Project5/small.ico -------------------------------------------------------------------------------- /DirectX透明效果/Win32Project5/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX透明效果/Win32Project5/stdafx.cpp -------------------------------------------------------------------------------- /DirectX透明效果/Win32Project5/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX透明效果/Win32Project5/stdafx.h -------------------------------------------------------------------------------- /DirectX透明效果/Win32Project5/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX透明效果/Win32Project5/targetver.h -------------------------------------------------------------------------------- /DirectX透明效果/Win32Project5/wall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/DirectX透明效果/Win32Project5/wall.jpg -------------------------------------------------------------------------------- /Get LoadLibraryA shellcode(x64)/ConsoleApplication3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/Get LoadLibraryA shellcode(x64)/ConsoleApplication3.sln -------------------------------------------------------------------------------- /Get LoadLibraryA shellcode(x64)/ConsoleApplication3/ConsoleApplication3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/Get LoadLibraryA shellcode(x64)/ConsoleApplication3/ConsoleApplication3.cpp -------------------------------------------------------------------------------- /Get LoadLibraryA shellcode(x64)/ConsoleApplication3/ConsoleApplication3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/Get LoadLibraryA shellcode(x64)/ConsoleApplication3/ConsoleApplication3.vcxproj -------------------------------------------------------------------------------- /Get LoadLibraryA shellcode(x64)/ConsoleApplication3/ConsoleApplication3.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/Get LoadLibraryA shellcode(x64)/ConsoleApplication3/ConsoleApplication3.vcxproj.filters -------------------------------------------------------------------------------- /Get LoadLibraryA shellcode(x64)/ConsoleApplication3/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/Get LoadLibraryA shellcode(x64)/ConsoleApplication3/ReadMe.txt -------------------------------------------------------------------------------- /Get LoadLibraryA shellcode(x64)/ConsoleApplication3/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/Get LoadLibraryA shellcode(x64)/ConsoleApplication3/stdafx.cpp -------------------------------------------------------------------------------- /Get LoadLibraryA shellcode(x64)/ConsoleApplication3/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/Get LoadLibraryA shellcode(x64)/ConsoleApplication3/stdafx.h -------------------------------------------------------------------------------- /Get LoadLibraryA shellcode(x64)/ConsoleApplication3/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/Get LoadLibraryA shellcode(x64)/ConsoleApplication3/targetver.h -------------------------------------------------------------------------------- /Get LoadLibraryA shellcode(x86)/ConsoleApplication3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/Get LoadLibraryA shellcode(x86)/ConsoleApplication3.sln -------------------------------------------------------------------------------- /Get LoadLibraryA shellcode(x86)/ConsoleApplication3/ConsoleApplication3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/Get LoadLibraryA shellcode(x86)/ConsoleApplication3/ConsoleApplication3.cpp -------------------------------------------------------------------------------- /Get LoadLibraryA shellcode(x86)/ConsoleApplication3/ConsoleApplication3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/Get LoadLibraryA shellcode(x86)/ConsoleApplication3/ConsoleApplication3.vcxproj -------------------------------------------------------------------------------- /Get LoadLibraryA shellcode(x86)/ConsoleApplication3/ConsoleApplication3.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/Get LoadLibraryA shellcode(x86)/ConsoleApplication3/ConsoleApplication3.vcxproj.filters -------------------------------------------------------------------------------- /Get LoadLibraryA shellcode(x86)/ConsoleApplication3/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/Get LoadLibraryA shellcode(x86)/ConsoleApplication3/ReadMe.txt -------------------------------------------------------------------------------- /Get LoadLibraryA shellcode(x86)/ConsoleApplication3/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/Get LoadLibraryA shellcode(x86)/ConsoleApplication3/stdafx.cpp -------------------------------------------------------------------------------- /Get LoadLibraryA shellcode(x86)/ConsoleApplication3/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/Get LoadLibraryA shellcode(x86)/ConsoleApplication3/stdafx.h -------------------------------------------------------------------------------- /Get LoadLibraryA shellcode(x86)/ConsoleApplication3/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/Get LoadLibraryA shellcode(x86)/ConsoleApplication3/targetver.h -------------------------------------------------------------------------------- /Get LoadLibraryA shellcode(x86)/Shellcode output tools/ConsoleApplication3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/Get LoadLibraryA shellcode(x86)/Shellcode output tools/ConsoleApplication3.sln -------------------------------------------------------------------------------- /HOOK示例/ConsoleApplication1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/HOOK示例/ConsoleApplication1.sln -------------------------------------------------------------------------------- /HOOK示例/ConsoleApplication1/ConsoleApplication1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/HOOK示例/ConsoleApplication1/ConsoleApplication1.cpp -------------------------------------------------------------------------------- /HOOK示例/ConsoleApplication1/ConsoleApplication1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/HOOK示例/ConsoleApplication1/ConsoleApplication1.vcxproj -------------------------------------------------------------------------------- /HOOK示例/ConsoleApplication1/ConsoleApplication1.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/HOOK示例/ConsoleApplication1/ConsoleApplication1.vcxproj.filters -------------------------------------------------------------------------------- /HOOK示例/ConsoleApplication1/ConsoleApplication1.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/HOOK示例/ConsoleApplication1/ConsoleApplication1.vcxproj.user -------------------------------------------------------------------------------- /HOOK示例/ConsoleApplication1/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/HOOK示例/ConsoleApplication1/ReadMe.txt -------------------------------------------------------------------------------- /HOOK示例/ConsoleApplication1/Win32Project2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/HOOK示例/ConsoleApplication1/Win32Project2.h -------------------------------------------------------------------------------- /HOOK示例/ConsoleApplication1/Win32Project2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/HOOK示例/ConsoleApplication1/Win32Project2.lib -------------------------------------------------------------------------------- /HOOK示例/ConsoleApplication1/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/HOOK示例/ConsoleApplication1/stdafx.cpp -------------------------------------------------------------------------------- /HOOK示例/ConsoleApplication1/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/HOOK示例/ConsoleApplication1/stdafx.h -------------------------------------------------------------------------------- /HOOK示例/ConsoleApplication1/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/HOOK示例/ConsoleApplication1/targetver.h -------------------------------------------------------------------------------- /NDIS Intermediate Drivers(NDIS 5.1)/MyDriver4.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS Intermediate Drivers(NDIS 5.1)/MyDriver4.sln -------------------------------------------------------------------------------- /NDIS Intermediate Drivers(NDIS 5.1)/MyDriver4/MyDriver4.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS Intermediate Drivers(NDIS 5.1)/MyDriver4/MyDriver4.vcxproj -------------------------------------------------------------------------------- /NDIS Intermediate Drivers(NDIS 5.1)/MyDriver4/MyDriver4.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS Intermediate Drivers(NDIS 5.1)/MyDriver4/MyDriver4.vcxproj.filters -------------------------------------------------------------------------------- /NDIS Intermediate Drivers(NDIS 5.1)/MyDriver4/MyDriver4.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS Intermediate Drivers(NDIS 5.1)/MyDriver4/MyDriver4.vcxproj.user -------------------------------------------------------------------------------- /NDIS Intermediate Drivers(NDIS 5.1)/MyDriver4/Passthru.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS Intermediate Drivers(NDIS 5.1)/MyDriver4/Passthru.inf -------------------------------------------------------------------------------- /NDIS Intermediate Drivers(NDIS 5.1)/MyDriver4/head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS Intermediate Drivers(NDIS 5.1)/MyDriver4/head.h -------------------------------------------------------------------------------- /NDIS Intermediate Drivers(NDIS 5.1)/MyDriver4/netsf_m.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS Intermediate Drivers(NDIS 5.1)/MyDriver4/netsf_m.inf -------------------------------------------------------------------------------- /NDIS Intermediate Drivers(NDIS 5.1)/MyDriver4/struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS Intermediate Drivers(NDIS 5.1)/MyDriver4/struct.h -------------------------------------------------------------------------------- /NDIS Intermediate Drivers(NDIS 5.1)/MyDriver4/源.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS Intermediate Drivers(NDIS 5.1)/MyDriver4/源.c -------------------------------------------------------------------------------- /NDIS Intermediate Drivers(NDIS 5.1)/x64/Win8Debug/MyDriver4 Package/Passthru.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS Intermediate Drivers(NDIS 5.1)/x64/Win8Debug/MyDriver4 Package/Passthru.inf -------------------------------------------------------------------------------- /NDIS Intermediate Drivers(NDIS 5.1)/x64/Win8Debug/MyDriver4 Package/Passthru.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS Intermediate Drivers(NDIS 5.1)/x64/Win8Debug/MyDriver4 Package/Passthru.sys -------------------------------------------------------------------------------- /NDIS Intermediate Drivers(NDIS 5.1)/x64/Win8Debug/MyDriver4 Package/netsf_m.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS Intermediate Drivers(NDIS 5.1)/x64/Win8Debug/MyDriver4 Package/netsf_m.inf -------------------------------------------------------------------------------- /NDIS Intermediate Drivers(NDIS 5.1)/x64/Win8Debug/Passthru.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS Intermediate Drivers(NDIS 5.1)/x64/Win8Debug/Passthru.cer -------------------------------------------------------------------------------- /NDIS Intermediate Drivers(NDIS 5.1)/x64/Win8Debug/Passthru.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS Intermediate Drivers(NDIS 5.1)/x64/Win8Debug/Passthru.inf -------------------------------------------------------------------------------- /NDIS Intermediate Drivers(NDIS 5.1)/x64/Win8Debug/Passthru.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS Intermediate Drivers(NDIS 5.1)/x64/Win8Debug/Passthru.sys -------------------------------------------------------------------------------- /NDIS Intermediate Drivers(NDIS 5.1)/x64/Win8Debug/netsf_m.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS Intermediate Drivers(NDIS 5.1)/x64/Win8Debug/netsf_m.inf -------------------------------------------------------------------------------- /NDIS NetWork Adapter Driver(KMDF Framework)/KMDF Driver2 Package/KMDF Driver2 Package.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS NetWork Adapter Driver(KMDF Framework)/KMDF Driver2 Package/KMDF Driver2 Package.vcxproj -------------------------------------------------------------------------------- /NDIS NetWork Adapter Driver(KMDF Framework)/KMDF Driver2 Package/KMDF Driver2 Package.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS NetWork Adapter Driver(KMDF Framework)/KMDF Driver2 Package/KMDF Driver2 Package.vcxproj.filters -------------------------------------------------------------------------------- /NDIS NetWork Adapter Driver(KMDF Framework)/KMDF Driver2 Package/Win7Debug/KMDF Dri.8C617AED.tlog/KMDF Driver2 Package.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS NetWork Adapter Driver(KMDF Framework)/KMDF Driver2 Package/Win7Debug/KMDF Dri.8C617AED.tlog/KMDF Driver2 Package.lastbuildstate -------------------------------------------------------------------------------- /NDIS NetWork Adapter Driver(KMDF Framework)/KMDF Driver2 Package/Win7Debug/KMDF Driver2 Package.vcxprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS NetWork Adapter Driver(KMDF Framework)/KMDF Driver2 Package/Win7Debug/KMDF Driver2 Package.vcxprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /NDIS NetWork Adapter Driver(KMDF Framework)/KMDF Driver2 Package/x64/Win7Debug/KMDF Dri.8C617AED.tlog/KMDF Driver2 Package.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS NetWork Adapter Driver(KMDF Framework)/KMDF Driver2 Package/x64/Win7Debug/KMDF Dri.8C617AED.tlog/KMDF Driver2 Package.lastbuildstate -------------------------------------------------------------------------------- /NDIS NetWork Adapter Driver(KMDF Framework)/KMDF Driver2 Package/x64/Win7Debug/KMDF Dri.8C617AED.tlog/unsuccessfulbuild: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NDIS NetWork Adapter Driver(KMDF Framework)/KMDF Driver2 Package/x64/Win7Release/KMDF Dri.8C617AED.tlog/KMDF Driver2 Package.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS NetWork Adapter Driver(KMDF Framework)/KMDF Driver2 Package/x64/Win7Release/KMDF Dri.8C617AED.tlog/KMDF Driver2 Package.lastbuildstate -------------------------------------------------------------------------------- /NDIS NetWork Adapter Driver(KMDF Framework)/KMDF Driver2 Package/x64/Win8.1Debug/KMDF Dri.8C617AED.tlog/KMDF Driver2 Package.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS NetWork Adapter Driver(KMDF Framework)/KMDF Driver2 Package/x64/Win8.1Debug/KMDF Dri.8C617AED.tlog/KMDF Driver2 Package.lastbuildstate -------------------------------------------------------------------------------- /NDIS NetWork Adapter Driver(KMDF Framework)/KMDF Driver2 Package/x64/Win8Release/KMDF Dri.8C617AED.tlog/KMDF Driver2 Package.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS NetWork Adapter Driver(KMDF Framework)/KMDF Driver2 Package/x64/Win8Release/KMDF Dri.8C617AED.tlog/KMDF Driver2 Package.lastbuildstate -------------------------------------------------------------------------------- /NDIS NetWork Adapter Driver(KMDF Framework)/KMDF Driver2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS NetWork Adapter Driver(KMDF Framework)/KMDF Driver2.sln -------------------------------------------------------------------------------- /NDIS NetWork Adapter Driver(KMDF Framework)/KMDF Driver2/KMDF Driver2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS NetWork Adapter Driver(KMDF Framework)/KMDF Driver2/KMDF Driver2.vcxproj -------------------------------------------------------------------------------- /NDIS NetWork Adapter Driver(KMDF Framework)/KMDF Driver2/KMDF Driver2.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS NetWork Adapter Driver(KMDF Framework)/KMDF Driver2/KMDF Driver2.vcxproj.filters -------------------------------------------------------------------------------- /NDIS NetWork Adapter Driver(KMDF Framework)/KMDF Driver2/Ndisedge.inx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS NetWork Adapter Driver(KMDF Framework)/KMDF Driver2/Ndisedge.inx -------------------------------------------------------------------------------- /NDIS NetWork Adapter Driver(KMDF Framework)/KMDF Driver2/Win7Debug/KMDF Driver2.tlog/KMDF Driver2.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS NetWork Adapter Driver(KMDF Framework)/KMDF Driver2/Win7Debug/KMDF Driver2.tlog/KMDF Driver2.lastbuildstate -------------------------------------------------------------------------------- /NDIS NetWork Adapter Driver(KMDF Framework)/KMDF Driver2/miniportfunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS NetWork Adapter Driver(KMDF Framework)/KMDF Driver2/miniportfunction.h -------------------------------------------------------------------------------- /NDIS NetWork Adapter Driver(KMDF Framework)/KMDF Driver2/x64/Win7Debug/KMDF Driver2.tlog/KMDF Driver2.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS NetWork Adapter Driver(KMDF Framework)/KMDF Driver2/x64/Win7Debug/KMDF Driver2.tlog/KMDF Driver2.lastbuildstate -------------------------------------------------------------------------------- /NDIS NetWork Adapter Driver(KMDF Framework)/KMDF Driver2/x64/Win7Debug/Ndisedge.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS NetWork Adapter Driver(KMDF Framework)/KMDF Driver2/x64/Win7Debug/Ndisedge.inf -------------------------------------------------------------------------------- /NDIS NetWork Adapter Driver(KMDF Framework)/KMDF Driver2/x64/Win7Release/KMDF Driver2.tlog/KMDF Driver2.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS NetWork Adapter Driver(KMDF Framework)/KMDF Driver2/x64/Win7Release/KMDF Driver2.tlog/KMDF Driver2.lastbuildstate -------------------------------------------------------------------------------- /NDIS NetWork Adapter Driver(KMDF Framework)/KMDF Driver2/x64/Win7Release/KMDF Driver2.tlog/unsuccessfulbuild: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NDIS NetWork Adapter Driver(KMDF Framework)/KMDF Driver2/x64/Win8.1Debug/KMDF Driver2.tlog/KMDF Driver2.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS NetWork Adapter Driver(KMDF Framework)/KMDF Driver2/x64/Win8.1Debug/KMDF Driver2.tlog/KMDF Driver2.lastbuildstate -------------------------------------------------------------------------------- /NDIS NetWork Adapter Driver(KMDF Framework)/KMDF Driver2/x64/Win8Release/KMDF Driver2.tlog/KMDF Driver2.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS NetWork Adapter Driver(KMDF Framework)/KMDF Driver2/x64/Win8Release/KMDF Driver2.tlog/KMDF Driver2.lastbuildstate -------------------------------------------------------------------------------- /NDIS NetWork Adapter Driver(KMDF Framework)/KMDF Driver2/源.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS NetWork Adapter Driver(KMDF Framework)/KMDF Driver2/源.c -------------------------------------------------------------------------------- /NDIS NetWork Adapter Driver(KMDF Framework)/x64/Win7Debug/KMDF Driver2 Package/KMDFDriver2.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS NetWork Adapter Driver(KMDF Framework)/x64/Win7Debug/KMDF Driver2 Package/KMDFDriver2.sys -------------------------------------------------------------------------------- /NDIS NetWork Adapter Driver(KMDF Framework)/x64/Win7Debug/KMDF Driver2 Package/Ndisedge.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS NetWork Adapter Driver(KMDF Framework)/x64/Win7Debug/KMDF Driver2 Package/Ndisedge.inf -------------------------------------------------------------------------------- /NDIS NetWork Adapter Driver(KMDF Framework)/x64/Win7Debug/KMDF Driver2 Package/WdfCoinstaller01011.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS NetWork Adapter Driver(KMDF Framework)/x64/Win7Debug/KMDF Driver2 Package/WdfCoinstaller01011.dll -------------------------------------------------------------------------------- /NDIS NetWork Adapter Driver(KMDF Framework)/x64/Win7Debug/KMDFDriver2.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS NetWork Adapter Driver(KMDF Framework)/x64/Win7Debug/KMDFDriver2.cer -------------------------------------------------------------------------------- /NDIS NetWork Adapter Driver(KMDF Framework)/x64/Win7Debug/KMDFDriver2.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS NetWork Adapter Driver(KMDF Framework)/x64/Win7Debug/KMDFDriver2.sys -------------------------------------------------------------------------------- /NDIS NetWork Adapter Driver(KMDF Framework)/x64/Win7Debug/Ndisedge.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS NetWork Adapter Driver(KMDF Framework)/x64/Win7Debug/Ndisedge.inf -------------------------------------------------------------------------------- /NDIS NetWork Adapter Driver(KMDF Framework)/x64/Win8Debug/Ndisedge.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS NetWork Adapter Driver(KMDF Framework)/x64/Win8Debug/Ndisedge.inf -------------------------------------------------------------------------------- /NDIS protocol driver/MyDriver1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS protocol driver/MyDriver1.sln -------------------------------------------------------------------------------- /NDIS protocol driver/MyDriver1/MyDriver1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS protocol driver/MyDriver1/MyDriver1.vcxproj -------------------------------------------------------------------------------- /NDIS protocol driver/MyDriver1/MyDriver1.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS protocol driver/MyDriver1/MyDriver1.vcxproj.filters -------------------------------------------------------------------------------- /NDIS protocol driver/MyDriver1/MyDriver1.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS protocol driver/MyDriver1/MyDriver1.vcxproj.user -------------------------------------------------------------------------------- /NDIS protocol driver/MyDriver1/Ndisprot.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS protocol driver/MyDriver1/Ndisprot.inf -------------------------------------------------------------------------------- /NDIS protocol driver/MyDriver1/Win7Debug/MyDriver1.tlog/MyDriver1.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS protocol driver/MyDriver1/Win7Debug/MyDriver1.tlog/MyDriver1.lastbuildstate -------------------------------------------------------------------------------- /NDIS protocol driver/MyDriver1/Win7Debug/MyDriver1.tlog/unsuccessfulbuild: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NDIS protocol driver/MyDriver1/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS protocol driver/MyDriver1/protocol.h -------------------------------------------------------------------------------- /NDIS protocol driver/MyDriver1/x64/Win8Debug/MyDriver1.tlog/MyDriver1.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS protocol driver/MyDriver1/x64/Win8Debug/MyDriver1.tlog/MyDriver1.lastbuildstate -------------------------------------------------------------------------------- /NDIS protocol driver/MyDriver1/x64/Win8Debug/Ndisprot.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS protocol driver/MyDriver1/x64/Win8Debug/Ndisprot.inf -------------------------------------------------------------------------------- /NDIS protocol driver/MyDriver1/x64/Win8Release/MyDriver1.tlog/MyDriver1.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS protocol driver/MyDriver1/x64/Win8Release/MyDriver1.tlog/MyDriver1.lastbuildstate -------------------------------------------------------------------------------- /NDIS protocol driver/MyDriver1/源.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS protocol driver/MyDriver1/源.c -------------------------------------------------------------------------------- /NDIS protocol driver/x64/Win8Debug/MyDriver1 Package/MyDriver1.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS protocol driver/x64/Win8Debug/MyDriver1 Package/MyDriver1.sys -------------------------------------------------------------------------------- /NDIS protocol driver/x64/Win8Debug/MyDriver1 Package/Ndisprot.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS protocol driver/x64/Win8Debug/MyDriver1 Package/Ndisprot.inf -------------------------------------------------------------------------------- /NDIS protocol driver/x64/Win8Debug/MyDriver1.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS protocol driver/x64/Win8Debug/MyDriver1.cer -------------------------------------------------------------------------------- /NDIS protocol driver/x64/Win8Debug/MyDriver1.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS protocol driver/x64/Win8Debug/MyDriver1.sys -------------------------------------------------------------------------------- /NDIS protocol driver/x64/Win8Debug/ndisprot.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/NDIS protocol driver/x64/Win8Debug/ndisprot.inf -------------------------------------------------------------------------------- /PDH获取系统信息/PDHTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/PDH获取系统信息/PDHTest.cpp -------------------------------------------------------------------------------- /PDH获取系统信息/PDHTest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/PDH获取系统信息/PDHTest.sln -------------------------------------------------------------------------------- /PDH获取系统信息/PDHTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/PDH获取系统信息/PDHTest.vcxproj -------------------------------------------------------------------------------- /PDH获取系统信息/PDHTest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/PDH获取系统信息/PDHTest.vcxproj.filters -------------------------------------------------------------------------------- /PDH获取系统信息/PDHTest.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/PDH获取系统信息/PDHTest.vcxproj.user -------------------------------------------------------------------------------- /PDH获取系统信息/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/PDH获取系统信息/stdafx.cpp -------------------------------------------------------------------------------- /PDH获取系统信息/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/PDH获取系统信息/stdafx.h -------------------------------------------------------------------------------- /PDH获取系统信息/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/PDH获取系统信息/targetver.h -------------------------------------------------------------------------------- /PE(portable executiom) structure.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/PE(portable executiom) structure.JPG -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/README.md -------------------------------------------------------------------------------- /RPC通信示例/client/client/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/RPC通信示例/client/client/client.cpp -------------------------------------------------------------------------------- /RPC通信示例/client/client/client.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/RPC通信示例/client/client/client.vcxproj -------------------------------------------------------------------------------- /RPC通信示例/client/client/client.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/RPC通信示例/client/client/client.vcxproj.filters -------------------------------------------------------------------------------- /RPC通信示例/client/client/client.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/RPC通信示例/client/client/client.vcxproj.user -------------------------------------------------------------------------------- /RPC通信示例/client/client/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/RPC通信示例/client/client/stdafx.cpp -------------------------------------------------------------------------------- /RPC通信示例/client/client/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/RPC通信示例/client/client/stdafx.h -------------------------------------------------------------------------------- /RPC通信示例/client/client/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/RPC通信示例/client/client/targetver.h -------------------------------------------------------------------------------- /RPC通信示例/server/server/commondef.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #define LISTEN_REMOTE 0 -------------------------------------------------------------------------------- /RPC通信示例/server/server/rpc.acf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/RPC通信示例/server/server/rpc.acf -------------------------------------------------------------------------------- /RPC通信示例/server/server/rpc.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/RPC通信示例/server/server/rpc.idl -------------------------------------------------------------------------------- /RPC通信示例/server/server/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/RPC通信示例/server/server/server.cpp -------------------------------------------------------------------------------- /RPC通信示例/server/server/server.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/RPC通信示例/server/server/server.sln -------------------------------------------------------------------------------- /RPC通信示例/server/server/server.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/RPC通信示例/server/server/server.vcxproj -------------------------------------------------------------------------------- /RPC通信示例/server/server/server.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/RPC通信示例/server/server/server.vcxproj.filters -------------------------------------------------------------------------------- /RPC通信示例/server/server/server.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/RPC通信示例/server/server/server.vcxproj.user -------------------------------------------------------------------------------- /RPC通信示例/server/server/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/RPC通信示例/server/server/stdafx.cpp -------------------------------------------------------------------------------- /RPC通信示例/server/server/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/RPC通信示例/server/server/stdafx.h -------------------------------------------------------------------------------- /RPC通信示例/server/server/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/RPC通信示例/server/server/targetver.h -------------------------------------------------------------------------------- /SSDT HOOK(64位)/MyDriver5 Package/MyDriver5 Package.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/SSDT HOOK(64位)/MyDriver5 Package/MyDriver5 Package.vcxproj -------------------------------------------------------------------------------- /SSDT HOOK(64位)/MyDriver5 Package/MyDriver5 Package.vcxproj.backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/SSDT HOOK(64位)/MyDriver5 Package/MyDriver5 Package.vcxproj.backup -------------------------------------------------------------------------------- /SSDT HOOK(64位)/MyDriver5 Package/MyDriver5 Package.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/SSDT HOOK(64位)/MyDriver5 Package/MyDriver5 Package.vcxproj.filters -------------------------------------------------------------------------------- /SSDT HOOK(64位)/MyDriver5 Package/MyDriver5 Package.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/SSDT HOOK(64位)/MyDriver5 Package/MyDriver5 Package.vcxproj.user -------------------------------------------------------------------------------- /SSDT HOOK(64位)/MyDriver5 Package/Win7Debug/MyDriver.C54BC88A.tlog/MyDriver5 Package.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/SSDT HOOK(64位)/MyDriver5 Package/Win7Debug/MyDriver.C54BC88A.tlog/MyDriver5 Package.lastbuildstate -------------------------------------------------------------------------------- /SSDT HOOK(64位)/MyDriver5 Package/x64/Win7Debug/MyDriver.C54BC88A.tlog/MyDriver5 Package.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/SSDT HOOK(64位)/MyDriver5 Package/x64/Win7Debug/MyDriver.C54BC88A.tlog/MyDriver5 Package.lastbuildstate -------------------------------------------------------------------------------- /SSDT HOOK(64位)/MyDriver5 Package/x64/Win7Release/MyDriver.C54BC88A.tlog/MyDriver5 Package.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/SSDT HOOK(64位)/MyDriver5 Package/x64/Win7Release/MyDriver.C54BC88A.tlog/MyDriver5 Package.lastbuildstate -------------------------------------------------------------------------------- /SSDT HOOK(64位)/MyDriver5 Package/x64/Win7Release/MyDriver5 Package.vcxprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/SSDT HOOK(64位)/MyDriver5 Package/x64/Win7Release/MyDriver5 Package.vcxprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /SSDT HOOK(64位)/MyDriver5 Package/x64/Win8.1Release/MyDriver.C54BC88A.tlog/MyDriver5 Package.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/SSDT HOOK(64位)/MyDriver5 Package/x64/Win8.1Release/MyDriver.C54BC88A.tlog/MyDriver5 Package.lastbuildstate -------------------------------------------------------------------------------- /SSDT HOOK(64位)/MyDriver5 Package/x64/Win8Debug/MyDriver.C54BC88A.tlog/MyDriver5 Package.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/SSDT HOOK(64位)/MyDriver5 Package/x64/Win8Debug/MyDriver.C54BC88A.tlog/MyDriver5 Package.lastbuildstate -------------------------------------------------------------------------------- /SSDT HOOK(64位)/MyDriver5 Package/x64/Win8Debug/MyDriver5 Package.vcxprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/SSDT HOOK(64位)/MyDriver5 Package/x64/Win8Debug/MyDriver5 Package.vcxprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /SSDT HOOK(64位)/MyDriver5 Package/x64/Win8Release/MyDriver.C54BC88A.tlog/MyDriver5 Package.lastbuildstate: -------------------------------------------------------------------------------- 1 | #TargetFrameworkVersion=v4.5:PlatformToolSet=WindowsKernelModeDriver8.1:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit 2 | Win8 Release|x64|I:\VS2013工程文件\SSDT HOOK(64位)\| 3 | -------------------------------------------------------------------------------- /SSDT HOOK(64位)/MyDriver5.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/SSDT HOOK(64位)/MyDriver5.sln -------------------------------------------------------------------------------- /SSDT HOOK(64位)/MyDriver5/MyDriver5.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/SSDT HOOK(64位)/MyDriver5/MyDriver5.vcxproj -------------------------------------------------------------------------------- /SSDT HOOK(64位)/MyDriver5/MyDriver5.vcxproj.backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/SSDT HOOK(64位)/MyDriver5/MyDriver5.vcxproj.backup -------------------------------------------------------------------------------- /SSDT HOOK(64位)/MyDriver5/MyDriver5.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/SSDT HOOK(64位)/MyDriver5/MyDriver5.vcxproj.filters -------------------------------------------------------------------------------- /SSDT HOOK(64位)/MyDriver5/Win7Debug/MyDriver5.tlog/MyDriver5.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/SSDT HOOK(64位)/MyDriver5/Win7Debug/MyDriver5.tlog/MyDriver5.lastbuildstate -------------------------------------------------------------------------------- /SSDT HOOK(64位)/MyDriver5/x64/Win7Debug/MyDriver5.tlog/MyDriver5.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/SSDT HOOK(64位)/MyDriver5/x64/Win7Debug/MyDriver5.tlog/MyDriver5.lastbuildstate -------------------------------------------------------------------------------- /SSDT HOOK(64位)/MyDriver5/x64/Win7Release/MyDriver5.tlog/MyDriver5.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/SSDT HOOK(64位)/MyDriver5/x64/Win7Release/MyDriver5.tlog/MyDriver5.lastbuildstate -------------------------------------------------------------------------------- /SSDT HOOK(64位)/MyDriver5/x64/Win8.1Release/MyDriver5.tlog/MyDriver5.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/SSDT HOOK(64位)/MyDriver5/x64/Win8.1Release/MyDriver5.tlog/MyDriver5.lastbuildstate -------------------------------------------------------------------------------- /SSDT HOOK(64位)/MyDriver5/x64/Win8Debug/MyDriver5.tlog/MyDriver5.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/SSDT HOOK(64位)/MyDriver5/x64/Win8Debug/MyDriver5.tlog/MyDriver5.lastbuildstate -------------------------------------------------------------------------------- /SSDT HOOK(64位)/MyDriver5/x64/Win8Release/MyDriver5.tlog/MyDriver5.lastbuildstate: -------------------------------------------------------------------------------- 1 | #TargetFrameworkVersion=v4.5:PlatformToolSet=WindowsKernelModeDriver8.1:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit 2 | Win8 Release|x64|I:\VS2013工程文件\SSDT HOOK(64位)\| 3 | -------------------------------------------------------------------------------- /SSDT HOOK(64位)/MyDriver5/源.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/SSDT HOOK(64位)/MyDriver5/源.c -------------------------------------------------------------------------------- /SSDT HOOK(64位)/Win7Debug/MyDriver5 Package/MyDriver5.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/SSDT HOOK(64位)/Win7Debug/MyDriver5 Package/MyDriver5.sys -------------------------------------------------------------------------------- /SSDT HOOK(64位)/Win7Debug/MyDriver5.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/SSDT HOOK(64位)/Win7Debug/MyDriver5.cer -------------------------------------------------------------------------------- /SSDT HOOK(64位)/Win7Debug/MyDriver5.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/SSDT HOOK(64位)/Win7Debug/MyDriver5.sys -------------------------------------------------------------------------------- /SSDT HOOK(64位)/x64/Win8Debug/MyDriver5 Package/MyDriver5.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/SSDT HOOK(64位)/x64/Win8Debug/MyDriver5 Package/MyDriver5.sys -------------------------------------------------------------------------------- /SSDT HOOK(64位)/x64/Win8Debug/MyDriver5.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/SSDT HOOK(64位)/x64/Win8Debug/MyDriver5.cer -------------------------------------------------------------------------------- /SSDT HOOK(64位)/x64/Win8Debug/MyDriver5.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/SSDT HOOK(64位)/x64/Win8Debug/MyDriver5.sys -------------------------------------------------------------------------------- /SSDT HOOK(64位)/x64/Win8Debug/MyDriver5/MyDriver5.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/SSDT HOOK(64位)/x64/Win8Debug/MyDriver5/MyDriver5.sys -------------------------------------------------------------------------------- /SSDT HOOK(32位)/MyDriver4 Package/MyDriver4 Package.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/SSDT HOOK(32位)/MyDriver4 Package/MyDriver4 Package.vcxproj -------------------------------------------------------------------------------- /SSDT HOOK(32位)/MyDriver4 Package/MyDriver4 Package.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/SSDT HOOK(32位)/MyDriver4 Package/MyDriver4 Package.vcxproj.filters -------------------------------------------------------------------------------- /SSDT HOOK(32位)/MyDriver4 Package/Win7Debug/MyDriver.6A7640B7.tlog/MyDriver4 Package.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/SSDT HOOK(32位)/MyDriver4 Package/Win7Debug/MyDriver.6A7640B7.tlog/MyDriver4 Package.lastbuildstate -------------------------------------------------------------------------------- /SSDT HOOK(32位)/MyDriver4 Package/Win8Debug/MyDriver.6A7640B7.tlog/MyDriver4 Package.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/SSDT HOOK(32位)/MyDriver4 Package/Win8Debug/MyDriver.6A7640B7.tlog/MyDriver4 Package.lastbuildstate -------------------------------------------------------------------------------- /SSDT HOOK(32位)/MyDriver4 Package/x64/Win7Debug/MyDriver.6A7640B7.tlog/MyDriver4 Package.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/SSDT HOOK(32位)/MyDriver4 Package/x64/Win7Debug/MyDriver.6A7640B7.tlog/MyDriver4 Package.lastbuildstate -------------------------------------------------------------------------------- /SSDT HOOK(32位)/MyDriver4 Package/x64/Win7Debug/MyDriver.6A7640B7.tlog/unsuccessfulbuild: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SSDT HOOK(32位)/MyDriver4 Package/x64/Win8Debug/MyDriver.6A7640B7.tlog/MyDriver4 Package.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/SSDT HOOK(32位)/MyDriver4 Package/x64/Win8Debug/MyDriver.6A7640B7.tlog/MyDriver4 Package.lastbuildstate -------------------------------------------------------------------------------- /SSDT HOOK(32位)/MyDriver4.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/SSDT HOOK(32位)/MyDriver4.sln -------------------------------------------------------------------------------- /SSDT HOOK(32位)/MyDriver4/MyDriver4.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/SSDT HOOK(32位)/MyDriver4/MyDriver4.vcxproj -------------------------------------------------------------------------------- /SSDT HOOK(32位)/MyDriver4/MyDriver4.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/SSDT HOOK(32位)/MyDriver4/MyDriver4.vcxproj.filters -------------------------------------------------------------------------------- /SSDT HOOK(32位)/MyDriver4/Win7Debug/MyDriver4.tlog/MyDriver4.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/SSDT HOOK(32位)/MyDriver4/Win7Debug/MyDriver4.tlog/MyDriver4.lastbuildstate -------------------------------------------------------------------------------- /SSDT HOOK(32位)/MyDriver4/Win8Debug/MyDriver4.tlog/MyDriver4.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/SSDT HOOK(32位)/MyDriver4/Win8Debug/MyDriver4.tlog/MyDriver4.lastbuildstate -------------------------------------------------------------------------------- /SSDT HOOK(32位)/MyDriver4/x64/Win7Debug/MyDriver4.tlog/MyDriver4.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/SSDT HOOK(32位)/MyDriver4/x64/Win7Debug/MyDriver4.tlog/MyDriver4.lastbuildstate -------------------------------------------------------------------------------- /SSDT HOOK(32位)/MyDriver4/x64/Win7Debug/MyDriver4.tlog/unsuccessfulbuild: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SSDT HOOK(32位)/MyDriver4/x64/Win8Debug/MyDriver4.tlog/MyDriver4.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/SSDT HOOK(32位)/MyDriver4/x64/Win8Debug/MyDriver4.tlog/MyDriver4.lastbuildstate -------------------------------------------------------------------------------- /SSDT HOOK(32位)/MyDriver4/源.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/SSDT HOOK(32位)/MyDriver4/源.c -------------------------------------------------------------------------------- /SSDT HOOK(32位)/Win7Debug/MyDriver4 Package/MyDriver4.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/SSDT HOOK(32位)/Win7Debug/MyDriver4 Package/MyDriver4.sys -------------------------------------------------------------------------------- /SSDT HOOK(32位)/Win7Debug/MyDriver4.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/SSDT HOOK(32位)/Win7Debug/MyDriver4.cer -------------------------------------------------------------------------------- /SSDT HOOK(32位)/Win7Debug/MyDriver4.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/SSDT HOOK(32位)/Win7Debug/MyDriver4.sys -------------------------------------------------------------------------------- /TDI network filter/MyDriver1.opensdf: -------------------------------------------------------------------------------- 1 | zlzPCZLZ -------------------------------------------------------------------------------- /TDI network filter/MyDriver1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/TDI network filter/MyDriver1.sln -------------------------------------------------------------------------------- /TDI network filter/MyDriver1/MyDriver1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/TDI network filter/MyDriver1/MyDriver1.vcxproj -------------------------------------------------------------------------------- /TDI network filter/MyDriver1/MyDriver1.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/TDI network filter/MyDriver1/MyDriver1.vcxproj.filters -------------------------------------------------------------------------------- /TDI network filter/MyDriver1/MyDriver1.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/TDI network filter/MyDriver1/MyDriver1.vcxproj.user -------------------------------------------------------------------------------- /TDI network filter/MyDriver1/源.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/TDI network filter/MyDriver1/源.c -------------------------------------------------------------------------------- /TDI network filter/x64/Win8Debug/MyDriver1 Package/MyDriver1.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/TDI network filter/x64/Win8Debug/MyDriver1 Package/MyDriver1.sys -------------------------------------------------------------------------------- /TDI network filter/x64/Win8Debug/MyDriver1.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/TDI network filter/x64/Win8Debug/MyDriver1.cer -------------------------------------------------------------------------------- /TDI network filter/x64/Win8Debug/MyDriver1.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/TDI network filter/x64/Win8Debug/MyDriver1.sys -------------------------------------------------------------------------------- /VirtualDisk/MyDriver1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/VirtualDisk/MyDriver1.sln -------------------------------------------------------------------------------- /VirtualDisk/MyDriver1/DevCon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/VirtualDisk/MyDriver1/DevCon.h -------------------------------------------------------------------------------- /VirtualDisk/MyDriver1/IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/VirtualDisk/MyDriver1/IO.h -------------------------------------------------------------------------------- /VirtualDisk/MyDriver1/MyDriver1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/VirtualDisk/MyDriver1/MyDriver1.vcxproj -------------------------------------------------------------------------------- /VirtualDisk/MyDriver1/MyDriver1.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/VirtualDisk/MyDriver1/MyDriver1.vcxproj.filters -------------------------------------------------------------------------------- /VirtualDisk/MyDriver1/MyDriver1.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/VirtualDisk/MyDriver1/MyDriver1.vcxproj.user -------------------------------------------------------------------------------- /VirtualDisk/MyDriver1/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/VirtualDisk/MyDriver1/init.c -------------------------------------------------------------------------------- /VirtualDisk/MyDriver1/setup.inx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/VirtualDisk/MyDriver1/setup.inx -------------------------------------------------------------------------------- /VirtualDisk/MyDriver1/struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/VirtualDisk/MyDriver1/struct.h -------------------------------------------------------------------------------- /VirtualDisk/效果图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/VirtualDisk/效果图.png -------------------------------------------------------------------------------- /WSK(WinSock Kernel) driver/MyDriver4.opensdf: -------------------------------------------------------------------------------- 1 | zlzPCZLZ -------------------------------------------------------------------------------- /WSK(WinSock Kernel) driver/MyDriver4.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/WSK(WinSock Kernel) driver/MyDriver4.sln -------------------------------------------------------------------------------- /WSK(WinSock Kernel) driver/MyDriver4/MyDriver4.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/WSK(WinSock Kernel) driver/MyDriver4/MyDriver4.inf -------------------------------------------------------------------------------- /WSK(WinSock Kernel) driver/MyDriver4/MyDriver4.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/WSK(WinSock Kernel) driver/MyDriver4/MyDriver4.vcxproj -------------------------------------------------------------------------------- /WSK(WinSock Kernel) driver/MyDriver4/MyDriver4.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/WSK(WinSock Kernel) driver/MyDriver4/MyDriver4.vcxproj.filters -------------------------------------------------------------------------------- /WSK(WinSock Kernel) driver/MyDriver4/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/WSK(WinSock Kernel) driver/MyDriver4/main.c -------------------------------------------------------------------------------- /WSK(WinSock Kernel) driver/x64/Win8Debug/MyDriver4 Package/MyDriver4.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/WSK(WinSock Kernel) driver/x64/Win8Debug/MyDriver4 Package/MyDriver4.inf -------------------------------------------------------------------------------- /WSK(WinSock Kernel) driver/x64/Win8Debug/MyDriver4 Package/MyDriver4.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/WSK(WinSock Kernel) driver/x64/Win8Debug/MyDriver4 Package/MyDriver4.sys -------------------------------------------------------------------------------- /WSK(WinSock Kernel) driver/x64/Win8Debug/MyDriver4.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/WSK(WinSock Kernel) driver/x64/Win8Debug/MyDriver4.cer -------------------------------------------------------------------------------- /WSK(WinSock Kernel) driver/x64/Win8Debug/MyDriver4.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/WSK(WinSock Kernel) driver/x64/Win8Debug/MyDriver4.inf -------------------------------------------------------------------------------- /WSK(WinSock Kernel) driver/x64/Win8Debug/MyDriver4.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/WSK(WinSock Kernel) driver/x64/Win8Debug/MyDriver4.sys -------------------------------------------------------------------------------- /Windows网络结构.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/Windows网络结构.vsdx -------------------------------------------------------------------------------- /fastfat/Win7/acchksup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/Win7/acchksup.c -------------------------------------------------------------------------------- /fastfat/Win7/allocsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/Win7/allocsup.c -------------------------------------------------------------------------------- /fastfat/Win7/cachesup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/Win7/cachesup.c -------------------------------------------------------------------------------- /fastfat/Win7/cleanup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/Win7/cleanup.c -------------------------------------------------------------------------------- /fastfat/Win7/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/Win7/close.c -------------------------------------------------------------------------------- /fastfat/Win7/create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/Win7/create.c -------------------------------------------------------------------------------- /fastfat/Win7/devctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/Win7/devctrl.c -------------------------------------------------------------------------------- /fastfat/Win7/deviosup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/Win7/deviosup.c -------------------------------------------------------------------------------- /fastfat/Win7/dirctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/Win7/dirctrl.c -------------------------------------------------------------------------------- /fastfat/Win7/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/Win7/dirs -------------------------------------------------------------------------------- /fastfat/Win7/dirsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/Win7/dirsup.c -------------------------------------------------------------------------------- /fastfat/Win7/dumpsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/Win7/dumpsup.c -------------------------------------------------------------------------------- /fastfat/Win7/ea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/Win7/ea.c -------------------------------------------------------------------------------- /fastfat/Win7/easup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/Win7/easup.c -------------------------------------------------------------------------------- /fastfat/Win7/fastfat.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/Win7/fastfat.rc -------------------------------------------------------------------------------- /fastfat/Win7/fat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/Win7/fat.h -------------------------------------------------------------------------------- /fastfat/Win7/fatdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/Win7/fatdata.c -------------------------------------------------------------------------------- /fastfat/Win7/fatdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/Win7/fatdata.h -------------------------------------------------------------------------------- /fastfat/Win7/fatinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/Win7/fatinit.c -------------------------------------------------------------------------------- /fastfat/Win7/fatprocs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/Win7/fatprocs.h -------------------------------------------------------------------------------- /fastfat/Win7/fatstruc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/Win7/fatstruc.h -------------------------------------------------------------------------------- /fastfat/Win7/fileinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/Win7/fileinfo.c -------------------------------------------------------------------------------- /fastfat/Win7/filobsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/Win7/filobsup.c -------------------------------------------------------------------------------- /fastfat/Win7/flush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/Win7/flush.c -------------------------------------------------------------------------------- /fastfat/Win7/fsctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/Win7/fsctrl.c -------------------------------------------------------------------------------- /fastfat/Win7/fspdisp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/Win7/fspdisp.c -------------------------------------------------------------------------------- /fastfat/Win7/lfn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/Win7/lfn.h -------------------------------------------------------------------------------- /fastfat/Win7/lockctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/Win7/lockctrl.c -------------------------------------------------------------------------------- /fastfat/Win7/mp/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/Win7/mp/makefile -------------------------------------------------------------------------------- /fastfat/Win7/mp/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/Win7/mp/sources -------------------------------------------------------------------------------- /fastfat/Win7/namesup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/Win7/namesup.c -------------------------------------------------------------------------------- /fastfat/Win7/nodetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/Win7/nodetype.h -------------------------------------------------------------------------------- /fastfat/Win7/pnp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/Win7/pnp.c -------------------------------------------------------------------------------- /fastfat/Win7/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/Win7/read.c -------------------------------------------------------------------------------- /fastfat/Win7/resrcsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/Win7/resrcsup.c -------------------------------------------------------------------------------- /fastfat/Win7/shutdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/Win7/shutdown.c -------------------------------------------------------------------------------- /fastfat/Win7/sources.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/Win7/sources.inc -------------------------------------------------------------------------------- /fastfat/Win7/splaysup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/Win7/splaysup.c -------------------------------------------------------------------------------- /fastfat/Win7/strucsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/Win7/strucsup.c -------------------------------------------------------------------------------- /fastfat/Win7/timesup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/Win7/timesup.c -------------------------------------------------------------------------------- /fastfat/Win7/verfysup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/Win7/verfysup.c -------------------------------------------------------------------------------- /fastfat/Win7/volinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/Win7/volinfo.c -------------------------------------------------------------------------------- /fastfat/Win7/workque.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/Win7/workque.c -------------------------------------------------------------------------------- /fastfat/Win7/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/Win7/write.c -------------------------------------------------------------------------------- /fastfat/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/dirs -------------------------------------------------------------------------------- /fastfat/wlh/acchksup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wlh/acchksup.c -------------------------------------------------------------------------------- /fastfat/wlh/allocsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wlh/allocsup.c -------------------------------------------------------------------------------- /fastfat/wlh/cachesup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wlh/cachesup.c -------------------------------------------------------------------------------- /fastfat/wlh/cleanup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wlh/cleanup.c -------------------------------------------------------------------------------- /fastfat/wlh/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wlh/close.c -------------------------------------------------------------------------------- /fastfat/wlh/create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wlh/create.c -------------------------------------------------------------------------------- /fastfat/wlh/devctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wlh/devctrl.c -------------------------------------------------------------------------------- /fastfat/wlh/deviosup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wlh/deviosup.c -------------------------------------------------------------------------------- /fastfat/wlh/dirctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wlh/dirctrl.c -------------------------------------------------------------------------------- /fastfat/wlh/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wlh/dirs -------------------------------------------------------------------------------- /fastfat/wlh/dirsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wlh/dirsup.c -------------------------------------------------------------------------------- /fastfat/wlh/dumpsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wlh/dumpsup.c -------------------------------------------------------------------------------- /fastfat/wlh/ea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wlh/ea.c -------------------------------------------------------------------------------- /fastfat/wlh/easup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wlh/easup.c -------------------------------------------------------------------------------- /fastfat/wlh/fastfat.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wlh/fastfat.rc -------------------------------------------------------------------------------- /fastfat/wlh/fat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wlh/fat.h -------------------------------------------------------------------------------- /fastfat/wlh/fatdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wlh/fatdata.c -------------------------------------------------------------------------------- /fastfat/wlh/fatdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wlh/fatdata.h -------------------------------------------------------------------------------- /fastfat/wlh/fatinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wlh/fatinit.c -------------------------------------------------------------------------------- /fastfat/wlh/fatprocs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wlh/fatprocs.h -------------------------------------------------------------------------------- /fastfat/wlh/fatstruc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wlh/fatstruc.h -------------------------------------------------------------------------------- /fastfat/wlh/fileinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wlh/fileinfo.c -------------------------------------------------------------------------------- /fastfat/wlh/filobsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wlh/filobsup.c -------------------------------------------------------------------------------- /fastfat/wlh/flush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wlh/flush.c -------------------------------------------------------------------------------- /fastfat/wlh/fsctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wlh/fsctrl.c -------------------------------------------------------------------------------- /fastfat/wlh/fspdisp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wlh/fspdisp.c -------------------------------------------------------------------------------- /fastfat/wlh/lfn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wlh/lfn.h -------------------------------------------------------------------------------- /fastfat/wlh/lockctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wlh/lockctrl.c -------------------------------------------------------------------------------- /fastfat/wlh/mp/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wlh/mp/makefile -------------------------------------------------------------------------------- /fastfat/wlh/mp/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wlh/mp/sources -------------------------------------------------------------------------------- /fastfat/wlh/namesup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wlh/namesup.c -------------------------------------------------------------------------------- /fastfat/wlh/nodetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wlh/nodetype.h -------------------------------------------------------------------------------- /fastfat/wlh/pnp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wlh/pnp.c -------------------------------------------------------------------------------- /fastfat/wlh/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wlh/read.c -------------------------------------------------------------------------------- /fastfat/wlh/resrcsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wlh/resrcsup.c -------------------------------------------------------------------------------- /fastfat/wlh/shutdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wlh/shutdown.c -------------------------------------------------------------------------------- /fastfat/wlh/sources.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wlh/sources.inc -------------------------------------------------------------------------------- /fastfat/wlh/splaysup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wlh/splaysup.c -------------------------------------------------------------------------------- /fastfat/wlh/strucsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wlh/strucsup.c -------------------------------------------------------------------------------- /fastfat/wlh/timesup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wlh/timesup.c -------------------------------------------------------------------------------- /fastfat/wlh/verfysup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wlh/verfysup.c -------------------------------------------------------------------------------- /fastfat/wlh/volinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wlh/volinfo.c -------------------------------------------------------------------------------- /fastfat/wlh/workque.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wlh/workque.c -------------------------------------------------------------------------------- /fastfat/wlh/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wlh/write.c -------------------------------------------------------------------------------- /fastfat/wnet/acchksup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wnet/acchksup.c -------------------------------------------------------------------------------- /fastfat/wnet/allocsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wnet/allocsup.c -------------------------------------------------------------------------------- /fastfat/wnet/cachesup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wnet/cachesup.c -------------------------------------------------------------------------------- /fastfat/wnet/cleanup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wnet/cleanup.c -------------------------------------------------------------------------------- /fastfat/wnet/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wnet/close.c -------------------------------------------------------------------------------- /fastfat/wnet/create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wnet/create.c -------------------------------------------------------------------------------- /fastfat/wnet/devctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wnet/devctrl.c -------------------------------------------------------------------------------- /fastfat/wnet/deviosup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wnet/deviosup.c -------------------------------------------------------------------------------- /fastfat/wnet/dirctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wnet/dirctrl.c -------------------------------------------------------------------------------- /fastfat/wnet/dirsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wnet/dirsup.c -------------------------------------------------------------------------------- /fastfat/wnet/dumpsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wnet/dumpsup.c -------------------------------------------------------------------------------- /fastfat/wnet/ea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wnet/ea.c -------------------------------------------------------------------------------- /fastfat/wnet/easup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wnet/easup.c -------------------------------------------------------------------------------- /fastfat/wnet/fastfat.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wnet/fastfat.rc -------------------------------------------------------------------------------- /fastfat/wnet/fat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wnet/fat.h -------------------------------------------------------------------------------- /fastfat/wnet/fatdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wnet/fatdata.c -------------------------------------------------------------------------------- /fastfat/wnet/fatdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wnet/fatdata.h -------------------------------------------------------------------------------- /fastfat/wnet/fatinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wnet/fatinit.c -------------------------------------------------------------------------------- /fastfat/wnet/fatprocs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wnet/fatprocs.h -------------------------------------------------------------------------------- /fastfat/wnet/fatstruc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wnet/fatstruc.h -------------------------------------------------------------------------------- /fastfat/wnet/fileinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wnet/fileinfo.c -------------------------------------------------------------------------------- /fastfat/wnet/filobsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wnet/filobsup.c -------------------------------------------------------------------------------- /fastfat/wnet/flush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wnet/flush.c -------------------------------------------------------------------------------- /fastfat/wnet/fsctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wnet/fsctrl.c -------------------------------------------------------------------------------- /fastfat/wnet/fspdisp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wnet/fspdisp.c -------------------------------------------------------------------------------- /fastfat/wnet/lfn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wnet/lfn.h -------------------------------------------------------------------------------- /fastfat/wnet/lockctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wnet/lockctrl.c -------------------------------------------------------------------------------- /fastfat/wnet/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wnet/makefile -------------------------------------------------------------------------------- /fastfat/wnet/namesup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wnet/namesup.c -------------------------------------------------------------------------------- /fastfat/wnet/nodetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wnet/nodetype.h -------------------------------------------------------------------------------- /fastfat/wnet/pnp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wnet/pnp.c -------------------------------------------------------------------------------- /fastfat/wnet/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wnet/read.c -------------------------------------------------------------------------------- /fastfat/wnet/resrcsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wnet/resrcsup.c -------------------------------------------------------------------------------- /fastfat/wnet/shutdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wnet/shutdown.c -------------------------------------------------------------------------------- /fastfat/wnet/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wnet/sources -------------------------------------------------------------------------------- /fastfat/wnet/splaysup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wnet/splaysup.c -------------------------------------------------------------------------------- /fastfat/wnet/strucsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wnet/strucsup.c -------------------------------------------------------------------------------- /fastfat/wnet/timesup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wnet/timesup.c -------------------------------------------------------------------------------- /fastfat/wnet/verfysup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wnet/verfysup.c -------------------------------------------------------------------------------- /fastfat/wnet/volinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wnet/volinfo.c -------------------------------------------------------------------------------- /fastfat/wnet/workque.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wnet/workque.c -------------------------------------------------------------------------------- /fastfat/wnet/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wnet/write.c -------------------------------------------------------------------------------- /fastfat/wxp/acchksup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wxp/acchksup.c -------------------------------------------------------------------------------- /fastfat/wxp/allocsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wxp/allocsup.c -------------------------------------------------------------------------------- /fastfat/wxp/cachesup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wxp/cachesup.c -------------------------------------------------------------------------------- /fastfat/wxp/cleanup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wxp/cleanup.c -------------------------------------------------------------------------------- /fastfat/wxp/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wxp/close.c -------------------------------------------------------------------------------- /fastfat/wxp/create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wxp/create.c -------------------------------------------------------------------------------- /fastfat/wxp/devctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wxp/devctrl.c -------------------------------------------------------------------------------- /fastfat/wxp/deviosup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wxp/deviosup.c -------------------------------------------------------------------------------- /fastfat/wxp/dirctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wxp/dirctrl.c -------------------------------------------------------------------------------- /fastfat/wxp/dirsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wxp/dirsup.c -------------------------------------------------------------------------------- /fastfat/wxp/dumpsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wxp/dumpsup.c -------------------------------------------------------------------------------- /fastfat/wxp/ea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wxp/ea.c -------------------------------------------------------------------------------- /fastfat/wxp/easup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wxp/easup.c -------------------------------------------------------------------------------- /fastfat/wxp/fastfat.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wxp/fastfat.rc -------------------------------------------------------------------------------- /fastfat/wxp/fat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wxp/fat.h -------------------------------------------------------------------------------- /fastfat/wxp/fatdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wxp/fatdata.c -------------------------------------------------------------------------------- /fastfat/wxp/fatdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wxp/fatdata.h -------------------------------------------------------------------------------- /fastfat/wxp/fatinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wxp/fatinit.c -------------------------------------------------------------------------------- /fastfat/wxp/fatprocs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wxp/fatprocs.h -------------------------------------------------------------------------------- /fastfat/wxp/fatstruc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wxp/fatstruc.h -------------------------------------------------------------------------------- /fastfat/wxp/fileinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wxp/fileinfo.c -------------------------------------------------------------------------------- /fastfat/wxp/filobsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wxp/filobsup.c -------------------------------------------------------------------------------- /fastfat/wxp/flush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wxp/flush.c -------------------------------------------------------------------------------- /fastfat/wxp/fsctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wxp/fsctrl.c -------------------------------------------------------------------------------- /fastfat/wxp/fspdisp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wxp/fspdisp.c -------------------------------------------------------------------------------- /fastfat/wxp/lfn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wxp/lfn.h -------------------------------------------------------------------------------- /fastfat/wxp/lockctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wxp/lockctrl.c -------------------------------------------------------------------------------- /fastfat/wxp/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wxp/makefile -------------------------------------------------------------------------------- /fastfat/wxp/namesup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wxp/namesup.c -------------------------------------------------------------------------------- /fastfat/wxp/nodetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wxp/nodetype.h -------------------------------------------------------------------------------- /fastfat/wxp/pnp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wxp/pnp.c -------------------------------------------------------------------------------- /fastfat/wxp/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wxp/read.c -------------------------------------------------------------------------------- /fastfat/wxp/resrcsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wxp/resrcsup.c -------------------------------------------------------------------------------- /fastfat/wxp/shutdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wxp/shutdown.c -------------------------------------------------------------------------------- /fastfat/wxp/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wxp/sources -------------------------------------------------------------------------------- /fastfat/wxp/splaysup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wxp/splaysup.c -------------------------------------------------------------------------------- /fastfat/wxp/strucsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wxp/strucsup.c -------------------------------------------------------------------------------- /fastfat/wxp/timesup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wxp/timesup.c -------------------------------------------------------------------------------- /fastfat/wxp/verfysup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wxp/verfysup.c -------------------------------------------------------------------------------- /fastfat/wxp/volinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wxp/volinfo.c -------------------------------------------------------------------------------- /fastfat/wxp/workque.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wxp/workque.c -------------------------------------------------------------------------------- /fastfat/wxp/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/fastfat/wxp/write.c -------------------------------------------------------------------------------- /hookbyzlz/hookbyzlz.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/hookbyzlz/hookbyzlz.sln -------------------------------------------------------------------------------- /hookbyzlz/hookbyzlz/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/hookbyzlz/hookbyzlz/ReadMe.txt -------------------------------------------------------------------------------- /hookbyzlz/hookbyzlz/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/hookbyzlz/hookbyzlz/dllmain.cpp -------------------------------------------------------------------------------- /hookbyzlz/hookbyzlz/hookbyzlz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/hookbyzlz/hookbyzlz/hookbyzlz.cpp -------------------------------------------------------------------------------- /hookbyzlz/hookbyzlz/hookbyzlz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/hookbyzlz/hookbyzlz/hookbyzlz.h -------------------------------------------------------------------------------- /hookbyzlz/hookbyzlz/hookbyzlz.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/hookbyzlz/hookbyzlz/hookbyzlz.vcxproj -------------------------------------------------------------------------------- /hookbyzlz/hookbyzlz/hookbyzlz.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/hookbyzlz/hookbyzlz/hookbyzlz.vcxproj.filters -------------------------------------------------------------------------------- /hookbyzlz/hookbyzlz/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/hookbyzlz/hookbyzlz/stdafx.cpp -------------------------------------------------------------------------------- /hookbyzlz/hookbyzlz/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/hookbyzlz/hookbyzlz/stdafx.h -------------------------------------------------------------------------------- /hookbyzlz/hookbyzlz/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/hookbyzlz/hookbyzlz/targetver.h -------------------------------------------------------------------------------- /hook钩子注入/Win32Project2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/hook钩子注入/Win32Project2.sln -------------------------------------------------------------------------------- /hook钩子注入/Win32Project2/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/hook钩子注入/Win32Project2/ReadMe.txt -------------------------------------------------------------------------------- /hook钩子注入/Win32Project2/Win32Project2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/hook钩子注入/Win32Project2/Win32Project2.h -------------------------------------------------------------------------------- /hook钩子注入/Win32Project2/Win32Project2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/hook钩子注入/Win32Project2/Win32Project2.vcxproj -------------------------------------------------------------------------------- /hook钩子注入/Win32Project2/Win32Project2.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/hook钩子注入/Win32Project2/Win32Project2.vcxproj.filters -------------------------------------------------------------------------------- /hook钩子注入/Win32Project2/Win32Project2.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/hook钩子注入/Win32Project2/Win32Project2.vcxproj.user -------------------------------------------------------------------------------- /hook钩子注入/Win32Project2/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/hook钩子注入/Win32Project2/dllmain.cpp -------------------------------------------------------------------------------- /hook钩子注入/Win32Project2/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/hook钩子注入/Win32Project2/stdafx.cpp -------------------------------------------------------------------------------- /hook钩子注入/Win32Project2/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/hook钩子注入/Win32Project2/stdafx.h -------------------------------------------------------------------------------- /hook钩子注入/Win32Project2/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/hook钩子注入/Win32Project2/targetver.h -------------------------------------------------------------------------------- /keybord filter/MyDriver1 Package/MyDriver1 Package.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/keybord filter/MyDriver1 Package/MyDriver1 Package.vcxproj -------------------------------------------------------------------------------- /keybord filter/MyDriver1 Package/MyDriver1 Package.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/keybord filter/MyDriver1 Package/MyDriver1 Package.vcxproj.filters -------------------------------------------------------------------------------- /keybord filter/MyDriver1 Package/Win7Debug/MyDriver.96BACFA0.tlog/MyDriver1 Package.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/keybord filter/MyDriver1 Package/Win7Debug/MyDriver.96BACFA0.tlog/MyDriver1 Package.lastbuildstate -------------------------------------------------------------------------------- /keybord filter/MyDriver1 Package/x64/Win8Debug/MyDriver.96BACFA0.tlog/MyDriver1 Package.lastbuildstate: -------------------------------------------------------------------------------- 1 | #TargetFrameworkVersion=v4.5:PlatformToolSet=WindowsKernelModeDriver8.1:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit 2 | Win8 Debug|x64|I:\VS2013工程文件\键盘过滤驱动\| 3 | -------------------------------------------------------------------------------- /keybord filter/MyDriver1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/keybord filter/MyDriver1.sln -------------------------------------------------------------------------------- /keybord filter/MyDriver1/MyDriver1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/keybord filter/MyDriver1/MyDriver1.vcxproj -------------------------------------------------------------------------------- /keybord filter/MyDriver1/MyDriver1.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/keybord filter/MyDriver1/MyDriver1.vcxproj.filters -------------------------------------------------------------------------------- /keybord filter/MyDriver1/Win7Debug/MyDriver1.tlog/MyDriver1.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/keybord filter/MyDriver1/Win7Debug/MyDriver1.tlog/MyDriver1.lastbuildstate -------------------------------------------------------------------------------- /keybord filter/MyDriver1/dasda.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/keybord filter/MyDriver1/dasda.c -------------------------------------------------------------------------------- /keybord filter/MyDriver1/x64/Win8Debug/MyDriver1.tlog/MyDriver1.lastbuildstate: -------------------------------------------------------------------------------- 1 | #TargetFrameworkVersion=v4.5:PlatformToolSet=WindowsKernelModeDriver8.1:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit 2 | Win8 Debug|x64|I:\VS2013工程文件\键盘过滤驱动\| 3 | -------------------------------------------------------------------------------- /keybord filter/Win7Debug/MyDriver1 Package/MyDriver1.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/keybord filter/Win7Debug/MyDriver1 Package/MyDriver1.sys -------------------------------------------------------------------------------- /keybord filter/Win7Debug/MyDriver1.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/keybord filter/Win7Debug/MyDriver1.cer -------------------------------------------------------------------------------- /keybord filter/Win7Debug/MyDriver1.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/keybord filter/Win7Debug/MyDriver1.sys -------------------------------------------------------------------------------- /keybord filter/x64/Win8Debug/MyDriver1 Package/MyDriver1.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/keybord filter/x64/Win8Debug/MyDriver1 Package/MyDriver1.sys -------------------------------------------------------------------------------- /keybord filter/x64/Win8Debug/MyDriver1.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/keybord filter/x64/Win8Debug/MyDriver1.cer -------------------------------------------------------------------------------- /keybord filter/x64/Win8Debug/MyDriver1.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/keybord filter/x64/Win8Debug/MyDriver1.sys -------------------------------------------------------------------------------- /minifliter (FLTMGR.sys)/MyDriver1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/minifliter (FLTMGR.sys)/MyDriver1.sln -------------------------------------------------------------------------------- /minifliter (FLTMGR.sys)/MyDriver1/MyDriver1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/minifliter (FLTMGR.sys)/MyDriver1/MyDriver1.vcxproj -------------------------------------------------------------------------------- /minifliter (FLTMGR.sys)/MyDriver1/MyDriver1.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/minifliter (FLTMGR.sys)/MyDriver1/MyDriver1.vcxproj.filters -------------------------------------------------------------------------------- /minifliter (FLTMGR.sys)/MyDriver1/源.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/minifliter (FLTMGR.sys)/MyDriver1/源.c -------------------------------------------------------------------------------- /minifliter (FLTMGR.sys)/NPminifilter.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/minifliter (FLTMGR.sys)/NPminifilter.inf -------------------------------------------------------------------------------- /minifliter (FLTMGR.sys)/x64/Win8Debug/MyDriver1 Package/MyDriver1.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/minifliter (FLTMGR.sys)/x64/Win8Debug/MyDriver1 Package/MyDriver1.sys -------------------------------------------------------------------------------- /minifliter (FLTMGR.sys)/x64/Win8Debug/MyDriver1 Package/NPminifilter.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/minifliter (FLTMGR.sys)/x64/Win8Debug/MyDriver1 Package/NPminifilter.inf -------------------------------------------------------------------------------- /minifliter (FLTMGR.sys)/x64/Win8Debug/MyDriver1.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/minifliter (FLTMGR.sys)/x64/Win8Debug/MyDriver1.cer -------------------------------------------------------------------------------- /minifliter (FLTMGR.sys)/x64/Win8Debug/MyDriver1.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/minifliter (FLTMGR.sys)/x64/Win8Debug/MyDriver1.sys -------------------------------------------------------------------------------- /minifliter (FLTMGR.sys)/x64/Win8Debug/NPminifilter.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/minifliter (FLTMGR.sys)/x64/Win8Debug/NPminifilter.inf -------------------------------------------------------------------------------- /minifliter (FLTMGR.sys)/x64/Win8Debug/flt.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/minifliter (FLTMGR.sys)/x64/Win8Debug/flt.sys -------------------------------------------------------------------------------- /my-Little-Ransomware-master/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/my-Little-Ransomware-master/LICENSE -------------------------------------------------------------------------------- /my-Little-Ransomware-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/my-Little-Ransomware-master/README.md -------------------------------------------------------------------------------- /my-Little-Ransomware-master/Ransomware/Ransomware.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/my-Little-Ransomware-master/Ransomware/Ransomware.sln -------------------------------------------------------------------------------- /my-Little-Ransomware-master/Ransomware/Ransomware/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/my-Little-Ransomware-master/Ransomware/Ransomware/Module.cs -------------------------------------------------------------------------------- /my-Little-Ransomware-master/Ransomware/Ransomware/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/my-Little-Ransomware-master/Ransomware/Ransomware/Program.cs -------------------------------------------------------------------------------- /my-Little-Ransomware-master/Ransomware/Ransomware/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/my-Little-Ransomware-master/Ransomware/Ransomware/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /my-Little-Ransomware-master/Ransomware/Ransomware/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/my-Little-Ransomware-master/Ransomware/Ransomware/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /my-Little-Ransomware-master/Ransomware/Ransomware/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/my-Little-Ransomware-master/Ransomware/Ransomware/Properties/Resources.resx -------------------------------------------------------------------------------- /my-Little-Ransomware-master/Ransomware/Ransomware/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/my-Little-Ransomware-master/Ransomware/Ransomware/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /my-Little-Ransomware-master/Ransomware/Ransomware/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/my-Little-Ransomware-master/Ransomware/Ransomware/Properties/Settings.settings -------------------------------------------------------------------------------- /my-Little-Ransomware-master/Ransomware/Ransomware/Ransomware.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/my-Little-Ransomware-master/Ransomware/Ransomware/Ransomware.csproj -------------------------------------------------------------------------------- /my-Little-Ransomware-master/Ransomware/Ransomware/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/my-Little-Ransomware-master/Ransomware/Ransomware/app.manifest -------------------------------------------------------------------------------- /my-Little-Ransomware-master/decryptoTool/cuteRansomware.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/my-Little-Ransomware-master/decryptoTool/cuteRansomware.sln -------------------------------------------------------------------------------- /my-Little-Ransomware-master/decryptoTool/decryptoTool/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/my-Little-Ransomware-master/decryptoTool/decryptoTool/Module.cs -------------------------------------------------------------------------------- /my-Little-Ransomware-master/decryptoTool/decryptoTool/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/my-Little-Ransomware-master/decryptoTool/decryptoTool/Program.cs -------------------------------------------------------------------------------- /my-Little-Ransomware-master/decryptoTool/decryptoTool/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/my-Little-Ransomware-master/decryptoTool/decryptoTool/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /my-Little-Ransomware-master/decryptoTool/decryptoTool/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/my-Little-Ransomware-master/decryptoTool/decryptoTool/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /my-Little-Ransomware-master/decryptoTool/decryptoTool/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/my-Little-Ransomware-master/decryptoTool/decryptoTool/Properties/Resources.resx -------------------------------------------------------------------------------- /my-Little-Ransomware-master/decryptoTool/decryptoTool/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/my-Little-Ransomware-master/decryptoTool/decryptoTool/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /my-Little-Ransomware-master/decryptoTool/decryptoTool/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/my-Little-Ransomware-master/decryptoTool/decryptoTool/Properties/Settings.settings -------------------------------------------------------------------------------- /my-Little-Ransomware-master/decryptoTool/decryptoTool/decryptoTool.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/my-Little-Ransomware-master/decryptoTool/decryptoTool/decryptoTool.csproj -------------------------------------------------------------------------------- /my-Little-Ransomware-master/releaseBinary/Ransomware.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/my-Little-Ransomware-master/releaseBinary/Ransomware.vshost.exe.manifest -------------------------------------------------------------------------------- /ntfs文件过滤驱动/FSFilter.VC.VC.opendb: -------------------------------------------------------------------------------- 1 | zlzPCARCH-VILE -------------------------------------------------------------------------------- /ntfs文件过滤驱动/FSFilter.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/ntfs文件过滤驱动/FSFilter.sln -------------------------------------------------------------------------------- /ntfs文件过滤驱动/FSFilter/AttachDetach.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/ntfs文件过滤驱动/FSFilter/AttachDetach.c -------------------------------------------------------------------------------- /ntfs文件过滤驱动/FSFilter/FSFilter.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/ntfs文件过滤驱动/FSFilter/FSFilter.vcxproj -------------------------------------------------------------------------------- /ntfs文件过滤驱动/FSFilter/FSFilter.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/ntfs文件过滤驱动/FSFilter/FSFilter.vcxproj.filters -------------------------------------------------------------------------------- /ntfs文件过滤驱动/FSFilter/FastIo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/ntfs文件过滤驱动/FSFilter/FastIo.c -------------------------------------------------------------------------------- /ntfs文件过滤驱动/FSFilter/FsFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/ntfs文件过滤驱动/FSFilter/FsFilter.h -------------------------------------------------------------------------------- /ntfs文件过滤驱动/FSFilter/IrpDispatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/ntfs文件过滤驱动/FSFilter/IrpDispatch.c -------------------------------------------------------------------------------- /ntfs文件过滤驱动/FSFilter/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/ntfs文件过滤驱动/FSFilter/Main.c -------------------------------------------------------------------------------- /ntfs文件过滤驱动/FSFilter/Notification.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/ntfs文件过滤驱动/FSFilter/Notification.c -------------------------------------------------------------------------------- /ntfs文件过滤驱动/FSFilter/Read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/ntfs文件过滤驱动/FSFilter/Read.c -------------------------------------------------------------------------------- /ntfs文件过滤驱动/FSFilter/Read.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/ntfs文件过滤驱动/FSFilter/Read.h -------------------------------------------------------------------------------- /ntfs文件过滤驱动/FSFilter/Write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/ntfs文件过滤驱动/FSFilter/Write.c -------------------------------------------------------------------------------- /ntfs文件过滤驱动/FSFilter/Write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/ntfs文件过滤驱动/FSFilter/Write.h -------------------------------------------------------------------------------- /ntfs文件过滤驱动/FSFilter/debug-macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/ntfs文件过滤驱动/FSFilter/debug-macros.h -------------------------------------------------------------------------------- /ntfs文件过滤驱动/FSFilter/install.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/ntfs文件过滤驱动/FSFilter/install.cmd -------------------------------------------------------------------------------- /ntfs文件过滤驱动/install.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/ntfs文件过滤驱动/install.cmd -------------------------------------------------------------------------------- /windows filter platform(WFP) driver/MyDriver4 Package/MyDriver4 Package.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/windows filter platform(WFP) driver/MyDriver4 Package/MyDriver4 Package.vcxproj -------------------------------------------------------------------------------- /windows filter platform(WFP) driver/MyDriver4 Package/MyDriver4 Package.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/windows filter platform(WFP) driver/MyDriver4 Package/MyDriver4 Package.vcxproj.filters -------------------------------------------------------------------------------- /windows filter platform(WFP) driver/MyDriver4 Package/x64/Win8Debug/MyDriver.5A2B20F5.tlog/MyDriver4 Package.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/windows filter platform(WFP) driver/MyDriver4 Package/x64/Win8Debug/MyDriver.5A2B20F5.tlog/MyDriver4 Package.lastbuildstate -------------------------------------------------------------------------------- /windows filter platform(WFP) driver/MyDriver4.opensdf: -------------------------------------------------------------------------------- 1 | zlzPCZLZ -------------------------------------------------------------------------------- /windows filter platform(WFP) driver/MyDriver4.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/windows filter platform(WFP) driver/MyDriver4.sln -------------------------------------------------------------------------------- /windows filter platform(WFP) driver/MyDriver4/MyDriver4.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/windows filter platform(WFP) driver/MyDriver4/MyDriver4.vcxproj -------------------------------------------------------------------------------- /windows filter platform(WFP) driver/MyDriver4/MyDriver4.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/windows filter platform(WFP) driver/MyDriver4/MyDriver4.vcxproj.filters -------------------------------------------------------------------------------- /windows filter platform(WFP) driver/MyDriver4/x64/Win8Debug/MyDriver4.tlog/MyDriver4.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/windows filter platform(WFP) driver/MyDriver4/x64/Win8Debug/MyDriver4.tlog/MyDriver4.lastbuildstate -------------------------------------------------------------------------------- /windows filter platform(WFP) driver/MyDriver4/源.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/windows filter platform(WFP) driver/MyDriver4/源.c -------------------------------------------------------------------------------- /windows filter platform(WFP) driver/x64/Win8Debug/MyDriver4 Package/MyDriver4.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/windows filter platform(WFP) driver/x64/Win8Debug/MyDriver4 Package/MyDriver4.sys -------------------------------------------------------------------------------- /windows filter platform(WFP) driver/x64/Win8Debug/MyDriver4.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/windows filter platform(WFP) driver/x64/Win8Debug/MyDriver4.cer -------------------------------------------------------------------------------- /windows filter platform(WFP) driver/x64/Win8Debug/MyDriver4.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/windows filter platform(WFP) driver/x64/Win8Debug/MyDriver4.sys -------------------------------------------------------------------------------- /x64dbg仿OD皮肤.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/x64dbg仿OD皮肤.ini -------------------------------------------------------------------------------- /任务管理器/Win32Project1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/任务管理器/Win32Project1.sln -------------------------------------------------------------------------------- /任务管理器/Win32Project1/Win32Project1.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/任务管理器/Win32Project1/Win32Project1.aps -------------------------------------------------------------------------------- /任务管理器/Win32Project1/Win32Project1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/任务管理器/Win32Project1/Win32Project1.cpp -------------------------------------------------------------------------------- /任务管理器/Win32Project1/Win32Project1.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /任务管理器/Win32Project1/Win32Project1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/任务管理器/Win32Project1/Win32Project1.ico -------------------------------------------------------------------------------- /任务管理器/Win32Project1/Win32Project1.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/任务管理器/Win32Project1/Win32Project1.rc -------------------------------------------------------------------------------- /任务管理器/Win32Project1/Win32Project1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/任务管理器/Win32Project1/Win32Project1.vcxproj -------------------------------------------------------------------------------- /任务管理器/Win32Project1/Win32Project1.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/任务管理器/Win32Project1/Win32Project1.vcxproj.filters -------------------------------------------------------------------------------- /任务管理器/Win32Project1/Win32Project1.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/任务管理器/Win32Project1/Win32Project1.vcxproj.user -------------------------------------------------------------------------------- /任务管理器/Win32Project1/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/任务管理器/Win32Project1/resource.h -------------------------------------------------------------------------------- /任务管理器/Win32Project1/small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/任务管理器/Win32Project1/small.ico -------------------------------------------------------------------------------- /任务管理器/Win32Project1/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/任务管理器/Win32Project1/stdafx.cpp -------------------------------------------------------------------------------- /任务管理器/Win32Project1/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/任务管理器/Win32Project1/stdafx.h -------------------------------------------------------------------------------- /任务管理器/Win32Project1/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/任务管理器/Win32Project1/targetver.h -------------------------------------------------------------------------------- /内核下枚举进程/MyDriver5.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/内核下枚举进程/MyDriver5.sln -------------------------------------------------------------------------------- /内核下枚举进程/MyDriver5/MyDriver5.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/内核下枚举进程/MyDriver5/MyDriver5.inf -------------------------------------------------------------------------------- /内核下枚举进程/MyDriver5/MyDriver5.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/内核下枚举进程/MyDriver5/MyDriver5.vcxproj -------------------------------------------------------------------------------- /内核下枚举进程/MyDriver5/MyDriver5.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/内核下枚举进程/MyDriver5/MyDriver5.vcxproj.filters -------------------------------------------------------------------------------- /内核下枚举进程/MyDriver5/MyDriver5.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/内核下枚举进程/MyDriver5/MyDriver5.vcxproj.user -------------------------------------------------------------------------------- /内核下枚举进程/MyDriver5/源.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/内核下枚举进程/MyDriver5/源.c -------------------------------------------------------------------------------- /内核下枚举进程/x64/Win8Debug/MyDriver5 Package/MyDriver5.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/内核下枚举进程/x64/Win8Debug/MyDriver5 Package/MyDriver5.inf -------------------------------------------------------------------------------- /内核下枚举进程/x64/Win8Debug/MyDriver5 Package/MyDriver5.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/内核下枚举进程/x64/Win8Debug/MyDriver5 Package/MyDriver5.sys -------------------------------------------------------------------------------- /内核下枚举进程/x64/Win8Debug/MyDriver5.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/内核下枚举进程/x64/Win8Debug/MyDriver5.cer -------------------------------------------------------------------------------- /内核下枚举进程/x64/Win8Debug/MyDriver5.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/内核下枚举进程/x64/Win8Debug/MyDriver5.inf -------------------------------------------------------------------------------- /内核下枚举进程/x64/Win8Debug/MyDriver5.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/内核下枚举进程/x64/Win8Debug/MyDriver5.sys -------------------------------------------------------------------------------- /利用WMI信息进行反调试/ConsoleApplication4.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/利用WMI信息进行反调试/ConsoleApplication4.sln -------------------------------------------------------------------------------- /利用WMI信息进行反调试/ConsoleApplication4/ConsoleApplication4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/利用WMI信息进行反调试/ConsoleApplication4/ConsoleApplication4.cpp -------------------------------------------------------------------------------- /利用WMI信息进行反调试/ConsoleApplication4/ConsoleApplication4.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/利用WMI信息进行反调试/ConsoleApplication4/ConsoleApplication4.vcxproj -------------------------------------------------------------------------------- /利用WMI信息进行反调试/ConsoleApplication4/ConsoleApplication4.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/利用WMI信息进行反调试/ConsoleApplication4/ConsoleApplication4.vcxproj.filters -------------------------------------------------------------------------------- /利用WMI信息进行反调试/ConsoleApplication4/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/利用WMI信息进行反调试/ConsoleApplication4/ReadMe.txt -------------------------------------------------------------------------------- /利用WMI信息进行反调试/ConsoleApplication4/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/利用WMI信息进行反调试/ConsoleApplication4/stdafx.cpp -------------------------------------------------------------------------------- /利用WMI信息进行反调试/ConsoleApplication4/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/利用WMI信息进行反调试/ConsoleApplication4/stdafx.h -------------------------------------------------------------------------------- /利用WMI信息进行反调试/ConsoleApplication4/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/利用WMI信息进行反调试/ConsoleApplication4/targetver.h -------------------------------------------------------------------------------- /利用WMI信息进行反调试/利用PowerShell查看WMI信息.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/利用WMI信息进行反调试/利用PowerShell查看WMI信息.png -------------------------------------------------------------------------------- /查看Dll函数/ConsoleApplication3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/查看Dll函数/ConsoleApplication3.sln -------------------------------------------------------------------------------- /查看Dll函数/ConsoleApplication3/ConsoleApplication3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/查看Dll函数/ConsoleApplication3/ConsoleApplication3.cpp -------------------------------------------------------------------------------- /查看Dll函数/ConsoleApplication3/ConsoleApplication3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/查看Dll函数/ConsoleApplication3/ConsoleApplication3.vcxproj -------------------------------------------------------------------------------- /查看Dll函数/ConsoleApplication3/ConsoleApplication3.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/查看Dll函数/ConsoleApplication3/ConsoleApplication3.vcxproj.filters -------------------------------------------------------------------------------- /查看Dll函数/ConsoleApplication3/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/查看Dll函数/ConsoleApplication3/ReadMe.txt -------------------------------------------------------------------------------- /查看Dll函数/ConsoleApplication3/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/查看Dll函数/ConsoleApplication3/stdafx.cpp -------------------------------------------------------------------------------- /查看Dll函数/ConsoleApplication3/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/查看Dll函数/ConsoleApplication3/stdafx.h -------------------------------------------------------------------------------- /查看Dll函数/ConsoleApplication3/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/查看Dll函数/ConsoleApplication3/targetver.h -------------------------------------------------------------------------------- /获取GDT表内容/MyDriver5.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/获取GDT表内容/MyDriver5.sln -------------------------------------------------------------------------------- /获取GDT表内容/MyDriver5/MyDriver5.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/获取GDT表内容/MyDriver5/MyDriver5.vcxproj -------------------------------------------------------------------------------- /获取GDT表内容/MyDriver5/MyDriver5.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/获取GDT表内容/MyDriver5/MyDriver5.vcxproj.filters -------------------------------------------------------------------------------- /获取GDT表内容/MyDriver5/源.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/获取GDT表内容/MyDriver5/源.c -------------------------------------------------------------------------------- /获取GDT表内容/x64/Win8Debug/MyDriver5 Package/MyDriver5.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/获取GDT表内容/x64/Win8Debug/MyDriver5 Package/MyDriver5.sys -------------------------------------------------------------------------------- /获取GDT表内容/x64/Win8Debug/MyDriver5.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/获取GDT表内容/x64/Win8Debug/MyDriver5.cer -------------------------------------------------------------------------------- /获取GDT表内容/x64/Win8Debug/MyDriver5.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/获取GDT表内容/x64/Win8Debug/MyDriver5.sys -------------------------------------------------------------------------------- /获取PEB32地址/ConsoleApplication4.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/获取PEB32地址/ConsoleApplication4.sln -------------------------------------------------------------------------------- /获取PEB32地址/ConsoleApplication4/ConsoleApplication4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/获取PEB32地址/ConsoleApplication4/ConsoleApplication4.cpp -------------------------------------------------------------------------------- /获取PEB32地址/ConsoleApplication4/ConsoleApplication4.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/获取PEB32地址/ConsoleApplication4/ConsoleApplication4.vcxproj -------------------------------------------------------------------------------- /获取PEB32地址/ConsoleApplication4/ConsoleApplication4.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/获取PEB32地址/ConsoleApplication4/ConsoleApplication4.vcxproj.filters -------------------------------------------------------------------------------- /获取PEB32地址/ConsoleApplication4/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/获取PEB32地址/ConsoleApplication4/ReadMe.txt -------------------------------------------------------------------------------- /获取PEB32地址/ConsoleApplication4/ntddk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/获取PEB32地址/ConsoleApplication4/ntddk.h -------------------------------------------------------------------------------- /获取PEB32地址/ConsoleApplication4/ntdll_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/获取PEB32地址/ConsoleApplication4/ntdll_types.h -------------------------------------------------------------------------------- /获取PEB32地址/ConsoleApplication4/ntdll_undoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/获取PEB32地址/ConsoleApplication4/ntdll_undoc.cpp -------------------------------------------------------------------------------- /获取PEB32地址/ConsoleApplication4/ntdll_undoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/获取PEB32地址/ConsoleApplication4/ntdll_undoc.h -------------------------------------------------------------------------------- /获取PEB32地址/ConsoleApplication4/pe_hdrs_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/获取PEB32地址/ConsoleApplication4/pe_hdrs_helper.cpp -------------------------------------------------------------------------------- /获取PEB32地址/ConsoleApplication4/pe_hdrs_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/获取PEB32地址/ConsoleApplication4/pe_hdrs_helper.h -------------------------------------------------------------------------------- /获取PEB32地址/ConsoleApplication4/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/获取PEB32地址/ConsoleApplication4/stdafx.cpp -------------------------------------------------------------------------------- /获取PEB32地址/ConsoleApplication4/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/获取PEB32地址/ConsoleApplication4/stdafx.h -------------------------------------------------------------------------------- /获取PEB32地址/ConsoleApplication4/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/获取PEB32地址/ConsoleApplication4/targetver.h -------------------------------------------------------------------------------- /获取PEB32地址/x64/Debug/ConsoleApplication4.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/获取PEB32地址/x64/Debug/ConsoleApplication4.exe -------------------------------------------------------------------------------- /远程注入器/injectx64/ConsoleApplication1.VC.VC.opendb: -------------------------------------------------------------------------------- 1 | Arch VileZLZPC -------------------------------------------------------------------------------- /远程注入器/injectx64/ConsoleApplication1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/远程注入器/injectx64/ConsoleApplication1.sln -------------------------------------------------------------------------------- /远程注入器/injectx64/ConsoleApplication1/ConsoleApplication1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/远程注入器/injectx64/ConsoleApplication1/ConsoleApplication1.cpp -------------------------------------------------------------------------------- /远程注入器/injectx64/ConsoleApplication1/ConsoleApplication1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/远程注入器/injectx64/ConsoleApplication1/ConsoleApplication1.vcxproj -------------------------------------------------------------------------------- /远程注入器/injectx64/ConsoleApplication1/ConsoleApplication1.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/远程注入器/injectx64/ConsoleApplication1/ConsoleApplication1.vcxproj.filters -------------------------------------------------------------------------------- /远程注入器/injectx64/ConsoleApplication1/ConsoleApplication1.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/远程注入器/injectx64/ConsoleApplication1/ConsoleApplication1.vcxproj.user -------------------------------------------------------------------------------- /远程注入器/injectx64/ConsoleApplication1/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/远程注入器/injectx64/ConsoleApplication1/ReadMe.txt -------------------------------------------------------------------------------- /远程注入器/injectx64/ConsoleApplication1/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/远程注入器/injectx64/ConsoleApplication1/stdafx.cpp -------------------------------------------------------------------------------- /远程注入器/injectx64/ConsoleApplication1/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/远程注入器/injectx64/ConsoleApplication1/stdafx.h -------------------------------------------------------------------------------- /远程注入器/injectx64/ConsoleApplication1/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/远程注入器/injectx64/ConsoleApplication1/targetver.h -------------------------------------------------------------------------------- /远程注入器/injectx86/ConsoleApplication7.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/远程注入器/injectx86/ConsoleApplication7.sln -------------------------------------------------------------------------------- /远程注入器/injectx86/ConsoleApplication7/ConsoleApplication7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/远程注入器/injectx86/ConsoleApplication7/ConsoleApplication7.cpp -------------------------------------------------------------------------------- /远程注入器/injectx86/ConsoleApplication7/ConsoleApplication7.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/远程注入器/injectx86/ConsoleApplication7/ConsoleApplication7.vcxproj -------------------------------------------------------------------------------- /远程注入器/injectx86/ConsoleApplication7/ConsoleApplication7.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/远程注入器/injectx86/ConsoleApplication7/ConsoleApplication7.vcxproj.filters -------------------------------------------------------------------------------- /远程注入器/injectx86/ConsoleApplication7/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/远程注入器/injectx86/ConsoleApplication7/ReadMe.txt -------------------------------------------------------------------------------- /远程注入器/injectx86/ConsoleApplication7/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/远程注入器/injectx86/ConsoleApplication7/stdafx.cpp -------------------------------------------------------------------------------- /远程注入器/injectx86/ConsoleApplication7/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/远程注入器/injectx86/ConsoleApplication7/stdafx.h -------------------------------------------------------------------------------- /远程注入器/injectx86/ConsoleApplication7/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/远程注入器/injectx86/ConsoleApplication7/targetver.h -------------------------------------------------------------------------------- /遍历进程/ConsoleApplication8.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/遍历进程/ConsoleApplication8.sln -------------------------------------------------------------------------------- /遍历进程/ConsoleApplication8/ConsoleApplication8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/遍历进程/ConsoleApplication8/ConsoleApplication8.cpp -------------------------------------------------------------------------------- /遍历进程/ConsoleApplication8/ConsoleApplication8.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/遍历进程/ConsoleApplication8/ConsoleApplication8.vcxproj -------------------------------------------------------------------------------- /遍历进程/ConsoleApplication8/ConsoleApplication8.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/遍历进程/ConsoleApplication8/ConsoleApplication8.vcxproj.filters -------------------------------------------------------------------------------- /遍历进程/ConsoleApplication8/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/遍历进程/ConsoleApplication8/ReadMe.txt -------------------------------------------------------------------------------- /遍历进程/ConsoleApplication8/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/遍历进程/ConsoleApplication8/stdafx.cpp -------------------------------------------------------------------------------- /遍历进程/ConsoleApplication8/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/遍历进程/ConsoleApplication8/stdafx.h -------------------------------------------------------------------------------- /遍历进程/ConsoleApplication8/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/遍历进程/ConsoleApplication8/targetver.h -------------------------------------------------------------------------------- /重载运算符的问题/ConsoleApplication1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/重载运算符的问题/ConsoleApplication1.sln -------------------------------------------------------------------------------- /重载运算符的问题/ConsoleApplication1/ConsoleApplication1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/重载运算符的问题/ConsoleApplication1/ConsoleApplication1.cpp -------------------------------------------------------------------------------- /重载运算符的问题/ConsoleApplication1/ConsoleApplication1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/重载运算符的问题/ConsoleApplication1/ConsoleApplication1.vcxproj -------------------------------------------------------------------------------- /重载运算符的问题/ConsoleApplication1/ConsoleApplication1.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/重载运算符的问题/ConsoleApplication1/ConsoleApplication1.vcxproj.filters -------------------------------------------------------------------------------- /重载运算符的问题/ConsoleApplication1/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/重载运算符的问题/ConsoleApplication1/ReadMe.txt -------------------------------------------------------------------------------- /重载运算符的问题/ConsoleApplication1/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/重载运算符的问题/ConsoleApplication1/stdafx.cpp -------------------------------------------------------------------------------- /重载运算符的问题/ConsoleApplication1/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/重载运算符的问题/ConsoleApplication1/stdafx.h -------------------------------------------------------------------------------- /重载运算符的问题/ConsoleApplication1/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iamgublin/C-and-assemble/HEAD/重载运算符的问题/ConsoleApplication1/targetver.h --------------------------------------------------------------------------------