gitextract_23hrulia/ ├── .gitattributes ├── Bin/ │ └── .empty ├── LICENSE.md ├── README.md ├── Source/ │ ├── Akagi/ │ │ ├── Resource.rc │ │ ├── aic.c │ │ ├── aic.h │ │ ├── akagi.manifest │ │ ├── appinfo/ │ │ │ ├── appinfo.acf │ │ │ ├── appinfo.idl │ │ │ ├── x64/ │ │ │ │ ├── appinfo64.c │ │ │ │ └── appinfo64.h │ │ │ └── x86-32/ │ │ │ ├── appinfo32.c │ │ │ └── appinfo32.h │ │ ├── bin/ │ │ │ ├── Akatsuki64.cd │ │ │ ├── Fubuki32.cd │ │ │ ├── Fubuki64.cd │ │ │ └── Kamikaze.cd │ │ ├── bin32res.h │ │ ├── bin32res.rc │ │ ├── bin64res.h │ │ ├── bin64res.rc │ │ ├── compress.c │ │ ├── compress.h │ │ ├── console.c │ │ ├── console.h │ │ ├── encresource.h │ │ ├── fusutil.c │ │ ├── fusutil.h │ │ ├── global.h │ │ ├── main.c │ │ ├── makecab.c │ │ ├── makecab.h │ │ ├── methods/ │ │ │ ├── antonioCoco.c │ │ │ ├── api0cradle.c │ │ │ ├── azagarampur.c │ │ │ ├── comsup.c │ │ │ ├── comsup.h │ │ │ ├── dwells.c │ │ │ ├── elvint.h │ │ │ ├── hakril.c │ │ │ ├── hybrids.c │ │ │ ├── methods.c │ │ │ ├── methods.h │ │ │ ├── rinn.c │ │ │ ├── routines.h │ │ │ ├── shellsup.c │ │ │ ├── tyranid.c │ │ │ ├── wusa.c │ │ │ └── zcgonvh.c │ │ ├── pcasvc/ │ │ │ ├── w7/ │ │ │ │ ├── pcasvc7.acf │ │ │ │ ├── pcasvc7.idl │ │ │ │ ├── x64/ │ │ │ │ │ ├── pcasvc7_64.c │ │ │ │ │ └── pcasvc7_64.h │ │ │ │ └── x86-32/ │ │ │ │ ├── pcasvc7_32.c │ │ │ │ └── pcasvc7_32.h │ │ │ └── w8_10/ │ │ │ ├── pcasvc.acf │ │ │ ├── pcasvc.idl │ │ │ ├── x64/ │ │ │ │ ├── pcasvc64.c │ │ │ │ └── pcasvc64.h │ │ │ └── x86-32/ │ │ │ ├── pcasvc32.c │ │ │ └── pcasvc32.h │ │ ├── resource.h │ │ ├── stub.c │ │ ├── stub.h │ │ ├── sup.c │ │ ├── sup.h │ │ ├── tests/ │ │ │ ├── test.c │ │ │ └── test.h │ │ ├── uacme.vcxproj │ │ ├── uacme.vcxproj.filters │ │ ├── uacme.vcxproj.user │ │ └── uas.h │ ├── Akatsuki/ │ │ ├── Akatsuki.vcxproj │ │ ├── Akatsuki.vcxproj.filters │ │ ├── Akatsuki.vcxproj.user │ │ ├── dllmain.c │ │ ├── export.def │ │ ├── resource.h │ │ └── version.rc │ ├── Fubuki/ │ │ ├── atldll.h │ │ ├── dll.vcxproj │ │ ├── dll.vcxproj.filters │ │ ├── dll.vcxproj.user │ │ ├── dllmain.c │ │ ├── export.def │ │ ├── fubuki.h │ │ ├── pca.c │ │ ├── pca.h │ │ ├── resource.h │ │ ├── uihacks.c │ │ ├── uihacks.h │ │ ├── version.rc │ │ └── winmm.h │ ├── Kamikaze/ │ │ ├── Kamikaze.msc │ │ └── Launcher.html │ ├── Naka/ │ │ ├── Naka.vcxproj │ │ ├── Naka.vcxproj.filters │ │ ├── Naka.vcxproj.user │ │ ├── main.c │ │ └── naka.h │ ├── README.md │ ├── Shared/ │ │ ├── _filename.c │ │ ├── _filename.h │ │ ├── _strcat.c │ │ ├── _strcmp.c │ │ ├── _strcmpi.c │ │ ├── _strcpy.c │ │ ├── _strend.c │ │ ├── _strlen.c │ │ ├── _strncmp.c │ │ ├── _strncmpi.c │ │ ├── _strncpy.c │ │ ├── _strstri.c │ │ ├── cmdline.c │ │ ├── cmdline.h │ │ ├── consts.h │ │ ├── hde/ │ │ │ ├── hde64.c │ │ │ ├── hde64.h │ │ │ ├── pstdint.h │ │ │ └── table64.h │ │ ├── itostr.c │ │ ├── ldr.c │ │ ├── ldr.h │ │ ├── libinc.h │ │ ├── minirtl.h │ │ ├── ntos/ │ │ │ ├── ntbuilds.h │ │ │ ├── ntos.h │ │ │ └── ntsxs.h │ │ ├── rtltypes.h │ │ ├── shared.h │ │ ├── strtoi.c │ │ ├── strtoul.c │ │ ├── u64tohex.c │ │ ├── u64tostr.c │ │ ├── ultohex.c │ │ ├── ultostr.c │ │ ├── util.c │ │ ├── util.h │ │ ├── windefend.c │ │ └── windefend.h │ ├── Yuubari/ │ │ ├── Resource.rc │ │ ├── Yuubari.vcxproj │ │ ├── Yuubari.vcxproj.filters │ │ ├── Yuubari.vcxproj.user │ │ ├── appinfo.c │ │ ├── appinfo.h │ │ ├── basic.c │ │ ├── basic.h │ │ ├── comobj.c │ │ ├── comobj.h │ │ ├── consts.h │ │ ├── cui.c │ │ ├── cui.h │ │ ├── fusion.c │ │ ├── fusion.h │ │ ├── global.h │ │ ├── logger.c │ │ ├── logger.h │ │ ├── main.c │ │ ├── resource.h │ │ ├── sup.c │ │ ├── sup.h │ │ ├── tests/ │ │ │ ├── test_fusion.c │ │ │ └── test_fusion.h │ │ └── wintrustex.h │ └── uacme.sln └── appveyor.yml