├── DwmDllFactor ├── DwmDll.dll ├── DwmDll │ ├── DwmDll.sln │ ├── DwmDll │ │ ├── DwmDll.vcxproj │ │ ├── DwmDll.vcxproj.filters │ │ ├── DwmDll.vcxproj.user │ │ ├── dllmain.cpp │ │ ├── dwm │ │ │ ├── DxCol.h │ │ │ ├── dxhook.cpp │ │ │ ├── dxhook.h │ │ │ └── hook.asm │ │ ├── framework.h │ │ ├── main.cpp │ │ ├── main2.cpp │ │ ├── pch.cpp │ │ ├── pch.h │ │ └── util │ │ │ ├── Common.cpp │ │ │ ├── Common.h │ │ │ ├── LoadMemLibrary.cpp │ │ │ ├── LoadMemLibrary.h │ │ │ ├── NtHelperX64.cpp │ │ │ ├── NtHelperX64.h │ │ │ ├── NtHelperX64_BaseStruct.h │ │ │ ├── NtHelperX64_PendingCode.asm │ │ │ ├── XorStr.hpp │ │ │ ├── avxintrin.h │ │ │ ├── mycrt.cpp │ │ │ ├── mycrt.h │ │ │ ├── stb_sprintf.cpp │ │ │ └── stb_sprintf.h │ └── userbuffer.txt ├── cast.bat ├── convert_chdr.py └── dwm_dlldata.h ├── FontFactor ├── Factor │ ├── GetGlyph.exe │ ├── chars.txt │ ├── cvt.py │ ├── fontdata.h │ ├── msyh.ttf │ └── simhei.ttf └── GlyphFactor │ ├── GetGlyph.sln │ └── GetGlyph │ ├── GetGlyph.cpp │ ├── GetGlyph.vcxproj │ ├── GetGlyph.vcxproj.filters │ ├── GetGlyph.vcxproj.user │ ├── include │ ├── freetype │ │ ├── config │ │ │ ├── ftconfig.h │ │ │ ├── ftheader.h │ │ │ ├── ftmodule.h │ │ │ ├── ftoption.h │ │ │ └── ftstdlib.h │ │ ├── freetype.h │ │ ├── ftadvanc.h │ │ ├── ftbbox.h │ │ ├── ftbdf.h │ │ ├── ftbitmap.h │ │ ├── ftbzip2.h │ │ ├── ftcache.h │ │ ├── ftchapters.h │ │ ├── ftcid.h │ │ ├── ftcolor.h │ │ ├── ftdriver.h │ │ ├── fterrdef.h │ │ ├── fterrors.h │ │ ├── ftfntfmt.h │ │ ├── ftgasp.h │ │ ├── ftglyph.h │ │ ├── ftgxval.h │ │ ├── ftgzip.h │ │ ├── ftimage.h │ │ ├── ftincrem.h │ │ ├── ftlcdfil.h │ │ ├── ftlist.h │ │ ├── ftlzw.h │ │ ├── ftmac.h │ │ ├── ftmm.h │ │ ├── ftmodapi.h │ │ ├── ftmoderr.h │ │ ├── ftotval.h │ │ ├── ftoutln.h │ │ ├── ftparams.h │ │ ├── ftpfr.h │ │ ├── ftrender.h │ │ ├── ftsizes.h │ │ ├── ftsnames.h │ │ ├── ftstroke.h │ │ ├── ftsynth.h │ │ ├── ftsystem.h │ │ ├── fttrigon.h │ │ ├── fttypes.h │ │ ├── ftwinfnt.h │ │ ├── internal │ │ │ ├── autohint.h │ │ │ ├── cffotypes.h │ │ │ ├── cfftypes.h │ │ │ ├── ftcalc.h │ │ │ ├── ftdebug.h │ │ │ ├── ftdrv.h │ │ │ ├── ftgloadr.h │ │ │ ├── fthash.h │ │ │ ├── ftmemory.h │ │ │ ├── ftobjs.h │ │ │ ├── ftpsprop.h │ │ │ ├── ftrfork.h │ │ │ ├── ftserv.h │ │ │ ├── ftstream.h │ │ │ ├── fttrace.h │ │ │ ├── ftvalid.h │ │ │ ├── internal.h │ │ │ ├── psaux.h │ │ │ ├── pshints.h │ │ │ ├── services │ │ │ │ ├── svbdf.h │ │ │ │ ├── svcfftl.h │ │ │ │ ├── svcid.h │ │ │ │ ├── svfntfmt.h │ │ │ │ ├── svgldict.h │ │ │ │ ├── svgxval.h │ │ │ │ ├── svkern.h │ │ │ │ ├── svmetric.h │ │ │ │ ├── svmm.h │ │ │ │ ├── svotval.h │ │ │ │ ├── svpfr.h │ │ │ │ ├── svpostnm.h │ │ │ │ ├── svprop.h │ │ │ │ ├── svpscmap.h │ │ │ │ ├── svpsinfo.h │ │ │ │ ├── svsfnt.h │ │ │ │ ├── svttcmap.h │ │ │ │ ├── svtteng.h │ │ │ │ ├── svttglyf.h │ │ │ │ └── svwinfnt.h │ │ │ ├── sfnt.h │ │ │ ├── t1types.h │ │ │ ├── tttypes.h │ │ │ └── wofftypes.h │ │ ├── t1tables.h │ │ ├── ttnameid.h │ │ ├── tttables.h │ │ └── tttags.h │ └── ft2build.h │ └── lib │ ├── 1.10.1 │ ├── freetype32.lib │ ├── freetype32d.lib │ ├── freetype64.lib │ └── freetype64d.lib │ ├── freetype32.lib │ ├── freetype32d.lib │ ├── freetype64.lib │ └── freetype64d.lib ├── KernelDwm ├── KernelDwm.sln └── KernelDwm │ ├── KernelDwm.inf │ ├── KernelDwm.vcxproj │ ├── KernelDwm.vcxproj.filters │ ├── KernelDwm.vcxproj.user │ ├── dwm │ ├── AsyncRenderTask.cpp │ ├── AsyncRenderTask.h │ ├── DwmRender.cpp │ ├── DwmRender.h │ ├── InjectDWM_Init.cpp │ ├── InjectDwm.cpp │ ├── InjectDwm.h │ ├── LegacyRender.h │ ├── MakeR3Mem.cpp │ ├── MakeR3Mem.h │ ├── Math.h │ ├── PeMapper.cpp │ ├── PeMapper.h │ ├── dwm_dlldata.h │ ├── dx11.h │ ├── dxgkhook.cpp │ ├── dxgkhook.h │ ├── dxgkhook_init.cpp │ ├── font.h │ ├── fontdata.h │ ├── kcall.cpp │ ├── kcall.h │ ├── kcall_init.cpp │ ├── kcallu.asm │ ├── kcallu_c.cpp │ ├── kdxhook.cpp │ ├── kdxhook.h │ ├── kdxrender.cpp │ ├── kdxrender.h │ ├── kdxrender_call.cpp │ ├── kdxrender_rend.cpp │ ├── myvector.cpp │ ├── myvector.h │ └── pmcol.h │ ├── hde │ ├── hde64.c │ ├── hde64.h │ ├── pstdint.h │ └── table64.h │ ├── khook │ ├── khook3.cpp │ ├── khook3.h │ └── khook3_init.cpp │ ├── main.cpp │ └── util │ ├── CompileControl.h │ ├── DDKCommon.cpp │ ├── DDKCommon.h │ ├── DDKCommonInline.h │ ├── HandleTable.cpp │ ├── HandleTable.h │ ├── ImportEncrypt.cpp │ ├── ImportEncrypt.h │ ├── ImportEncrypt_DynamicEmulator.cpp │ ├── ImportEncrypt_DynamicEmulator.h │ ├── ImportEncrypt_Generic.py │ ├── ImportEncrypt_Table.txt │ ├── ImportEncrypt_do.bat │ ├── KernelAsm.asm │ ├── KernelAsm.h │ ├── MyMemoryIo64.cpp │ ├── MyMemoryIo64.h │ ├── MyPEB.h │ ├── NtFunctionDefine.h │ ├── PatternFinderWrapper.h │ ├── Process.cpp │ ├── Process.h │ ├── XorCrypt.h │ ├── XorStr.hpp │ ├── kapc.cpp │ ├── kapc.h │ ├── khookutil.cpp │ ├── khookutil.h │ ├── oldnames_const.cpp │ ├── oldnames_const.h │ ├── oldnames_emu.cpp │ ├── oldnames_emu.h │ ├── oldnames_inline.h │ ├── smem.cpp │ ├── smem.h │ └── util.h ├── LICENSE ├── README.md └── 分析文章 ├── Snipaste_2023-10-06_00-37-40.png ├── Untitled Diagram.drawio (2).png ├── image-20231006012455935.png ├── image-20231006022058251.png ├── image-20231006071150756.png ├── image-20231006071916981.png ├── image-20231006073819121.png ├── image-20231006073839996.png ├── image-20231006093202948.png ├── image-20231006134901381.png └── 分析文章.md /DwmDllFactor/DwmDll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/DwmDllFactor/DwmDll.dll -------------------------------------------------------------------------------- /DwmDllFactor/DwmDll/DwmDll.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/DwmDllFactor/DwmDll/DwmDll.sln -------------------------------------------------------------------------------- /DwmDllFactor/DwmDll/DwmDll/DwmDll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/DwmDllFactor/DwmDll/DwmDll/DwmDll.vcxproj -------------------------------------------------------------------------------- /DwmDllFactor/DwmDll/DwmDll/DwmDll.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/DwmDllFactor/DwmDll/DwmDll/DwmDll.vcxproj.filters -------------------------------------------------------------------------------- /DwmDllFactor/DwmDll/DwmDll/DwmDll.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/DwmDllFactor/DwmDll/DwmDll/DwmDll.vcxproj.user -------------------------------------------------------------------------------- /DwmDllFactor/DwmDll/DwmDll/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/DwmDllFactor/DwmDll/DwmDll/dllmain.cpp -------------------------------------------------------------------------------- /DwmDllFactor/DwmDll/DwmDll/dwm/DxCol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/DwmDllFactor/DwmDll/DwmDll/dwm/DxCol.h -------------------------------------------------------------------------------- /DwmDllFactor/DwmDll/DwmDll/dwm/dxhook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/DwmDllFactor/DwmDll/DwmDll/dwm/dxhook.cpp -------------------------------------------------------------------------------- /DwmDllFactor/DwmDll/DwmDll/dwm/dxhook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/DwmDllFactor/DwmDll/DwmDll/dwm/dxhook.h -------------------------------------------------------------------------------- /DwmDllFactor/DwmDll/DwmDll/dwm/hook.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/DwmDllFactor/DwmDll/DwmDll/dwm/hook.asm -------------------------------------------------------------------------------- /DwmDllFactor/DwmDll/DwmDll/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/DwmDllFactor/DwmDll/DwmDll/framework.h -------------------------------------------------------------------------------- /DwmDllFactor/DwmDll/DwmDll/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/DwmDllFactor/DwmDll/DwmDll/main.cpp -------------------------------------------------------------------------------- /DwmDllFactor/DwmDll/DwmDll/main2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/DwmDllFactor/DwmDll/DwmDll/main2.cpp -------------------------------------------------------------------------------- /DwmDllFactor/DwmDll/DwmDll/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/DwmDllFactor/DwmDll/DwmDll/pch.cpp -------------------------------------------------------------------------------- /DwmDllFactor/DwmDll/DwmDll/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/DwmDllFactor/DwmDll/DwmDll/pch.h -------------------------------------------------------------------------------- /DwmDllFactor/DwmDll/DwmDll/util/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/DwmDllFactor/DwmDll/DwmDll/util/Common.cpp -------------------------------------------------------------------------------- /DwmDllFactor/DwmDll/DwmDll/util/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/DwmDllFactor/DwmDll/DwmDll/util/Common.h -------------------------------------------------------------------------------- /DwmDllFactor/DwmDll/DwmDll/util/LoadMemLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/DwmDllFactor/DwmDll/DwmDll/util/LoadMemLibrary.cpp -------------------------------------------------------------------------------- /DwmDllFactor/DwmDll/DwmDll/util/LoadMemLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/DwmDllFactor/DwmDll/DwmDll/util/LoadMemLibrary.h -------------------------------------------------------------------------------- /DwmDllFactor/DwmDll/DwmDll/util/NtHelperX64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/DwmDllFactor/DwmDll/DwmDll/util/NtHelperX64.cpp -------------------------------------------------------------------------------- /DwmDllFactor/DwmDll/DwmDll/util/NtHelperX64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/DwmDllFactor/DwmDll/DwmDll/util/NtHelperX64.h -------------------------------------------------------------------------------- /DwmDllFactor/DwmDll/DwmDll/util/NtHelperX64_BaseStruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/DwmDllFactor/DwmDll/DwmDll/util/NtHelperX64_BaseStruct.h -------------------------------------------------------------------------------- /DwmDllFactor/DwmDll/DwmDll/util/NtHelperX64_PendingCode.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/DwmDllFactor/DwmDll/DwmDll/util/NtHelperX64_PendingCode.asm -------------------------------------------------------------------------------- /DwmDllFactor/DwmDll/DwmDll/util/XorStr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/DwmDllFactor/DwmDll/DwmDll/util/XorStr.hpp -------------------------------------------------------------------------------- /DwmDllFactor/DwmDll/DwmDll/util/avxintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/DwmDllFactor/DwmDll/DwmDll/util/avxintrin.h -------------------------------------------------------------------------------- /DwmDllFactor/DwmDll/DwmDll/util/mycrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/DwmDllFactor/DwmDll/DwmDll/util/mycrt.cpp -------------------------------------------------------------------------------- /DwmDllFactor/DwmDll/DwmDll/util/mycrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/DwmDllFactor/DwmDll/DwmDll/util/mycrt.h -------------------------------------------------------------------------------- /DwmDllFactor/DwmDll/DwmDll/util/stb_sprintf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/DwmDllFactor/DwmDll/DwmDll/util/stb_sprintf.cpp -------------------------------------------------------------------------------- /DwmDllFactor/DwmDll/DwmDll/util/stb_sprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/DwmDllFactor/DwmDll/DwmDll/util/stb_sprintf.h -------------------------------------------------------------------------------- /DwmDllFactor/DwmDll/userbuffer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/DwmDllFactor/DwmDll/userbuffer.txt -------------------------------------------------------------------------------- /DwmDllFactor/cast.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/DwmDllFactor/cast.bat -------------------------------------------------------------------------------- /DwmDllFactor/convert_chdr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/DwmDllFactor/convert_chdr.py -------------------------------------------------------------------------------- /DwmDllFactor/dwm_dlldata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/DwmDllFactor/dwm_dlldata.h -------------------------------------------------------------------------------- /FontFactor/Factor/GetGlyph.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/Factor/GetGlyph.exe -------------------------------------------------------------------------------- /FontFactor/Factor/chars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/Factor/chars.txt -------------------------------------------------------------------------------- /FontFactor/Factor/cvt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/Factor/cvt.py -------------------------------------------------------------------------------- /FontFactor/Factor/fontdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/Factor/fontdata.h -------------------------------------------------------------------------------- /FontFactor/Factor/msyh.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/Factor/msyh.ttf -------------------------------------------------------------------------------- /FontFactor/Factor/simhei.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/Factor/simhei.ttf -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph.sln -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/GetGlyph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/GetGlyph.cpp -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/GetGlyph.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/GetGlyph.vcxproj -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/GetGlyph.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/GetGlyph.vcxproj.filters -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/GetGlyph.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/GetGlyph.vcxproj.user -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/config/ftconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/config/ftconfig.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/config/ftheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/config/ftheader.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/config/ftmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/config/ftmodule.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/config/ftoption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/config/ftoption.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/config/ftstdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/config/ftstdlib.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/freetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/freetype.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/ftadvanc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/ftadvanc.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/ftbbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/ftbbox.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/ftbdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/ftbdf.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/ftbitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/ftbitmap.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/ftbzip2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/ftbzip2.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/ftcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/ftcache.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/ftchapters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/ftchapters.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/ftcid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/ftcid.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/ftcolor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/ftcolor.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/ftdriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/ftdriver.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/fterrdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/fterrdef.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/fterrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/fterrors.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/ftfntfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/ftfntfmt.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/ftgasp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/ftgasp.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/ftglyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/ftglyph.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/ftgxval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/ftgxval.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/ftgzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/ftgzip.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/ftimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/ftimage.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/ftincrem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/ftincrem.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/ftlcdfil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/ftlcdfil.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/ftlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/ftlist.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/ftlzw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/ftlzw.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/ftmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/ftmac.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/ftmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/ftmm.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/ftmodapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/ftmodapi.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/ftmoderr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/ftmoderr.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/ftotval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/ftotval.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/ftoutln.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/ftoutln.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/ftparams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/ftparams.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/ftpfr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/ftpfr.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/ftrender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/ftrender.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/ftsizes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/ftsizes.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/ftsnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/ftsnames.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/ftstroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/ftstroke.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/ftsynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/ftsynth.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/ftsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/ftsystem.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/fttrigon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/fttrigon.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/fttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/fttypes.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/ftwinfnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/ftwinfnt.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/autohint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/autohint.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/cffotypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/cffotypes.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/cfftypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/cfftypes.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/ftcalc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/ftcalc.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/ftdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/ftdebug.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/ftdrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/ftdrv.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/ftgloadr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/ftgloadr.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/fthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/fthash.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/ftmemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/ftmemory.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/ftobjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/ftobjs.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/ftpsprop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/ftpsprop.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/ftrfork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/ftrfork.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/ftserv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/ftserv.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/ftstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/ftstream.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/fttrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/fttrace.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/ftvalid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/ftvalid.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/internal.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/psaux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/psaux.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/pshints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/pshints.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/services/svbdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/services/svbdf.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/services/svcfftl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/services/svcfftl.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/services/svcid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/services/svcid.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/services/svfntfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/services/svfntfmt.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/services/svgldict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/services/svgldict.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/services/svgxval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/services/svgxval.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/services/svkern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/services/svkern.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/services/svmetric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/services/svmetric.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/services/svmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/services/svmm.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/services/svotval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/services/svotval.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/services/svpfr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/services/svpfr.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/services/svpostnm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/services/svpostnm.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/services/svprop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/services/svprop.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/services/svpscmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/services/svpscmap.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/services/svpsinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/services/svpsinfo.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/services/svsfnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/services/svsfnt.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/services/svttcmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/services/svttcmap.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/services/svtteng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/services/svtteng.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/services/svttglyf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/services/svttglyf.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/services/svwinfnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/services/svwinfnt.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/sfnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/sfnt.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/t1types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/t1types.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/tttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/tttypes.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/wofftypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/internal/wofftypes.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/t1tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/t1tables.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/ttnameid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/ttnameid.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/tttables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/tttables.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/freetype/tttags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/freetype/tttags.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/include/ft2build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/include/ft2build.h -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/lib/1.10.1/freetype32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/lib/1.10.1/freetype32.lib -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/lib/1.10.1/freetype32d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/lib/1.10.1/freetype32d.lib -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/lib/1.10.1/freetype64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/lib/1.10.1/freetype64.lib -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/lib/1.10.1/freetype64d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/lib/1.10.1/freetype64d.lib -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/lib/freetype32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/lib/freetype32.lib -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/lib/freetype32d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/lib/freetype32d.lib -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/lib/freetype64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/lib/freetype64.lib -------------------------------------------------------------------------------- /FontFactor/GlyphFactor/GetGlyph/lib/freetype64d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/FontFactor/GlyphFactor/GetGlyph/lib/freetype64d.lib -------------------------------------------------------------------------------- /KernelDwm/KernelDwm.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm.sln -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/KernelDwm.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/KernelDwm.inf -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/KernelDwm.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/KernelDwm.vcxproj -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/KernelDwm.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/KernelDwm.vcxproj.filters -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/KernelDwm.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/KernelDwm.vcxproj.user -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/dwm/AsyncRenderTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/dwm/AsyncRenderTask.cpp -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/dwm/AsyncRenderTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/dwm/AsyncRenderTask.h -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/dwm/DwmRender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/dwm/DwmRender.cpp -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/dwm/DwmRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/dwm/DwmRender.h -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/dwm/InjectDWM_Init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/dwm/InjectDWM_Init.cpp -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/dwm/InjectDwm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/dwm/InjectDwm.cpp -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/dwm/InjectDwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/dwm/InjectDwm.h -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/dwm/LegacyRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/dwm/LegacyRender.h -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/dwm/MakeR3Mem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/dwm/MakeR3Mem.cpp -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/dwm/MakeR3Mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/dwm/MakeR3Mem.h -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/dwm/Math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/dwm/Math.h -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/dwm/PeMapper.cpp: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/dwm/PeMapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/dwm/PeMapper.h -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/dwm/dwm_dlldata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/dwm/dwm_dlldata.h -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/dwm/dx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/dwm/dx11.h -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/dwm/dxgkhook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/dwm/dxgkhook.cpp -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/dwm/dxgkhook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/dwm/dxgkhook.h -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/dwm/dxgkhook_init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/dwm/dxgkhook_init.cpp -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/dwm/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/dwm/font.h -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/dwm/fontdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/dwm/fontdata.h -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/dwm/kcall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/dwm/kcall.cpp -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/dwm/kcall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/dwm/kcall.h -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/dwm/kcall_init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/dwm/kcall_init.cpp -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/dwm/kcallu.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/dwm/kcallu.asm -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/dwm/kcallu_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/dwm/kcallu_c.cpp -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/dwm/kdxhook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/dwm/kdxhook.cpp -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/dwm/kdxhook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/dwm/kdxhook.h -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/dwm/kdxrender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/dwm/kdxrender.cpp -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/dwm/kdxrender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/dwm/kdxrender.h -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/dwm/kdxrender_call.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/dwm/kdxrender_call.cpp -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/dwm/kdxrender_rend.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/dwm/myvector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/dwm/myvector.cpp -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/dwm/myvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/dwm/myvector.h -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/dwm/pmcol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/dwm/pmcol.h -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/hde/hde64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/hde/hde64.c -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/hde/hde64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/hde/hde64.h -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/hde/pstdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/hde/pstdint.h -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/hde/table64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/hde/table64.h -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/khook/khook3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/khook/khook3.cpp -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/khook/khook3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/khook/khook3.h -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/khook/khook3_init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/khook/khook3_init.cpp -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/main.cpp -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/util/CompileControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/util/CompileControl.h -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/util/DDKCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/util/DDKCommon.cpp -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/util/DDKCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/util/DDKCommon.h -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/util/DDKCommonInline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/util/DDKCommonInline.h -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/util/HandleTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/util/HandleTable.cpp -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/util/HandleTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/util/HandleTable.h -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/util/ImportEncrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/util/ImportEncrypt.cpp -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/util/ImportEncrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/util/ImportEncrypt.h -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/util/ImportEncrypt_DynamicEmulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/util/ImportEncrypt_DynamicEmulator.cpp -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/util/ImportEncrypt_DynamicEmulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/util/ImportEncrypt_DynamicEmulator.h -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/util/ImportEncrypt_Generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/util/ImportEncrypt_Generic.py -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/util/ImportEncrypt_Table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/util/ImportEncrypt_Table.txt -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/util/ImportEncrypt_do.bat: -------------------------------------------------------------------------------- 1 | python3 ImportEncrypt_Generic.py -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/util/KernelAsm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/util/KernelAsm.asm -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/util/KernelAsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/util/KernelAsm.h -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/util/MyMemoryIo64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/util/MyMemoryIo64.cpp -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/util/MyMemoryIo64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/util/MyMemoryIo64.h -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/util/MyPEB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/util/MyPEB.h -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/util/NtFunctionDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/util/NtFunctionDefine.h -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/util/PatternFinderWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/util/PatternFinderWrapper.h -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/util/Process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/util/Process.cpp -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/util/Process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/util/Process.h -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/util/XorCrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/util/XorCrypt.h -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/util/XorStr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/util/XorStr.hpp -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/util/kapc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/util/kapc.cpp -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/util/kapc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/util/kapc.h -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/util/khookutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/util/khookutil.cpp -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/util/khookutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/util/khookutil.h -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/util/oldnames_const.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/util/oldnames_const.cpp -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/util/oldnames_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/util/oldnames_const.h -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/util/oldnames_emu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/util/oldnames_emu.cpp -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/util/oldnames_emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/util/oldnames_emu.h -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/util/oldnames_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/util/oldnames_inline.h -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/util/smem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/util/smem.cpp -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/util/smem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/util/smem.h -------------------------------------------------------------------------------- /KernelDwm/KernelDwm/util/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/KernelDwm/KernelDwm/util/util.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/README.md -------------------------------------------------------------------------------- /分析文章/Snipaste_2023-10-06_00-37-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/分析文章/Snipaste_2023-10-06_00-37-40.png -------------------------------------------------------------------------------- /分析文章/Untitled Diagram.drawio (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/分析文章/Untitled Diagram.drawio (2).png -------------------------------------------------------------------------------- /分析文章/image-20231006012455935.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/分析文章/image-20231006012455935.png -------------------------------------------------------------------------------- /分析文章/image-20231006022058251.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/分析文章/image-20231006022058251.png -------------------------------------------------------------------------------- /分析文章/image-20231006071150756.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/分析文章/image-20231006071150756.png -------------------------------------------------------------------------------- /分析文章/image-20231006071916981.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/分析文章/image-20231006071916981.png -------------------------------------------------------------------------------- /分析文章/image-20231006073819121.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/分析文章/image-20231006073819121.png -------------------------------------------------------------------------------- /分析文章/image-20231006073839996.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/分析文章/image-20231006073839996.png -------------------------------------------------------------------------------- /分析文章/image-20231006093202948.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/分析文章/image-20231006093202948.png -------------------------------------------------------------------------------- /分析文章/image-20231006134901381.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/分析文章/image-20231006134901381.png -------------------------------------------------------------------------------- /分析文章/分析文章.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs1ime/KernelDwm/HEAD/分析文章/分析文章.md --------------------------------------------------------------------------------