├── .editorconfig ├── .gitignore ├── InvokeCompilerPass ├── .clang-format ├── .editorconfig ├── .gitignore ├── .vsconfig ├── Directory.Build.props ├── ICPTest.cpp ├── ICPTest.vs17.vcxproj ├── ICPTest.vs17.vcxproj.filters ├── InvokeCompilerPass.cpp ├── InvokeCompilerPass.h ├── InvokeCompilerPass.vs17.sln ├── InvokeCompilerPass.vs17.vcxproj ├── InvokeCompilerPass.vs17.vcxproj.filters ├── LuaBridge.h ├── README.md ├── check-ntnative.sh ├── clang-reformat.sh ├── dllversion.h ├── dllversion.rc ├── fmt │ ├── .clang-format │ ├── LICENSE.rst │ ├── include │ │ └── fmt │ │ │ ├── args.h │ │ │ ├── chrono.h │ │ │ ├── color.h │ │ │ ├── compile.h │ │ │ ├── core.h │ │ │ ├── format-inl.h │ │ │ ├── format.h │ │ │ ├── os.h │ │ │ ├── ostream.h │ │ │ ├── printf.h │ │ │ ├── ranges.h │ │ │ ├── std.h │ │ │ └── xchar.h │ └── src │ │ ├── fmt.cc │ │ ├── format.cc │ │ └── os.cc ├── lua │ ├── .clang-format │ ├── .gitignore │ ├── README.md │ ├── all │ ├── lapi.c │ ├── lapi.h │ ├── lauxlib.c │ ├── lauxlib.h │ ├── lbaselib.c │ ├── lcode.c │ ├── lcode.h │ ├── lcorolib.c │ ├── lctype.c │ ├── lctype.h │ ├── ldblib.c │ ├── ldebug.c │ ├── ldebug.h │ ├── ldo.c │ ├── ldo.h │ ├── ldump.c │ ├── lfunc.c │ ├── lfunc.h │ ├── lgc.c │ ├── lgc.h │ ├── linit.c │ ├── liolib.c │ ├── ljumptab.h │ ├── llex.c │ ├── llex.h │ ├── llimits.h │ ├── lmathlib.c │ ├── lmem.c │ ├── lmem.h │ ├── loadlib.c │ ├── lobject.c │ ├── lobject.h │ ├── lopcodes.c │ ├── lopcodes.h │ ├── lopnames.h │ ├── loslib.c │ ├── lparser.c │ ├── lparser.h │ ├── lprefix.h │ ├── lstate.c │ ├── lstate.h │ ├── lstring.c │ ├── lstring.h │ ├── lstrlib.c │ ├── ltable.c │ ├── ltable.h │ ├── ltablib.c │ ├── ltests.c │ ├── ltests.h │ ├── ltm.c │ ├── ltm.h │ ├── lua.c │ ├── lua.h │ ├── luaconf.h │ ├── lualib.h │ ├── lundump.c │ ├── lundump.h │ ├── lutf8lib.c │ ├── lvm.c │ ├── lvm.h │ ├── lzio.c │ ├── lzio.h │ ├── makefile │ ├── manual │ │ ├── 2html │ │ └── manual.of │ ├── onelua.c │ └── testes │ │ ├── all.lua │ │ ├── api.lua │ │ ├── attrib.lua │ │ ├── big.lua │ │ ├── bitwise.lua │ │ ├── bwcoercion.lua │ │ ├── calls.lua │ │ ├── closure.lua │ │ ├── code.lua │ │ ├── constructs.lua │ │ ├── coroutine.lua │ │ ├── cstack.lua │ │ ├── db.lua │ │ ├── errors.lua │ │ ├── events.lua │ │ ├── files.lua │ │ ├── gc.lua │ │ ├── gengc.lua │ │ ├── goto.lua │ │ ├── heavy.lua │ │ ├── libs │ │ ├── P1 │ │ │ └── dummy │ │ ├── lib1.c │ │ ├── lib11.c │ │ ├── lib2.c │ │ ├── lib21.c │ │ ├── lib22.c │ │ └── makefile │ │ ├── literals.lua │ │ ├── locals.lua │ │ ├── main.lua │ │ ├── math.lua │ │ ├── nextvar.lua │ │ ├── packtests │ │ ├── pm.lua │ │ ├── sort.lua │ │ ├── strings.lua │ │ ├── tpack.lua │ │ ├── tracegc.lua │ │ ├── utf8.lua │ │ ├── vararg.lua │ │ └── verybig.lua ├── luaall.c ├── ntnative.h ├── ntpebldr.h ├── premake4.lua ├── project.early.props ├── project.late.props └── utfcpp │ ├── .clang-format │ └── source │ ├── utf8.h │ └── utf8 │ ├── checked.h │ ├── core.h │ ├── cpp11.h │ ├── cpp17.h │ └── unchecked.h ├── LINK.exe.md ├── NOTES.md ├── README.md ├── UNLICENSE ├── help-output ├── 14.29.30133-16.11.30 │ └── Hostx64 │ │ ├── arm │ │ ├── armasm.exe-14.29.30152.0.txt │ │ ├── cl.exe-19.29.30152.0.txt │ │ ├── lib.exe-14.29.30152.0.txt │ │ ├── link.exe-14.29.30152.0.txt │ │ └── nmake.exe-14.29.30152.0.txt │ │ ├── arm64 │ │ ├── armasm64.exe-14.29.30152.0.txt │ │ ├── cl.exe-19.29.30152.0.txt │ │ ├── lib.exe-14.29.30152.0.txt │ │ ├── link.exe-14.29.30152.0.txt │ │ ├── ml64.exe-14.29.30152.0.txt │ │ └── nmake.exe-14.29.30152.0.txt │ │ ├── x64 │ │ ├── cl.exe-19.29.30152.0.txt │ │ ├── lib.exe-14.29.30152.0.txt │ │ ├── link.exe-14.29.30152.0.txt │ │ ├── ml64.exe-14.29.30152.0.txt │ │ └── nmake.exe-14.29.30152.0.txt │ │ └── x86 │ │ ├── cl.exe-19.29.30152.0.txt │ │ ├── lib.exe-14.29.30152.0.txt │ │ ├── link.exe-14.29.30152.0.txt │ │ ├── ml.exe-14.29.30152.0.txt │ │ └── nmake.exe-14.29.30152.0.txt ├── 14.29.30133 │ └── Hostx64 │ │ ├── arm │ │ ├── armasm.exe-14.29.30151.0.txt │ │ ├── cl.exe-19.29.30151.0.txt │ │ ├── lib.exe-14.29.30151.0.txt │ │ ├── link.exe-14.29.30151.0.txt │ │ └── nmake.exe-14.29.30151.0.txt │ │ ├── arm64 │ │ ├── armasm64.exe-14.29.30151.0.txt │ │ ├── cl.exe-19.29.30151.0.txt │ │ ├── lib.exe-14.29.30151.0.txt │ │ ├── link.exe-14.29.30151.0.txt │ │ ├── ml64.exe-14.29.30151.0.txt │ │ └── nmake.exe-14.29.30151.0.txt │ │ ├── x64 │ │ ├── cl.exe-19.29.30151.0.txt │ │ ├── lib.exe-14.29.30151.0.txt │ │ ├── link.exe-14.29.30151.0.txt │ │ ├── ml64.exe-14.29.30151.0.txt │ │ └── nmake.exe-14.29.30151.0.txt │ │ └── x86 │ │ ├── cl.exe-19.29.30151.0.txt │ │ ├── lib.exe-14.29.30151.0.txt │ │ ├── link.exe-14.29.30151.0.txt │ │ ├── ml.exe-14.29.30151.0.txt │ │ └── nmake.exe-14.29.30151.0.txt ├── 14.34.31933 │ └── Hostx64 │ │ ├── x64 │ │ ├── cl.exe-19.34.31937.0.txt │ │ ├── link.exe-14.34.31937.0.txt │ │ ├── ml64.exe-14.34.31937.0.txt │ │ └── nmake.exe-14.34.31937.0.txt │ │ └── x86 │ │ ├── cl.exe-19.34.31937.0.txt │ │ ├── link.exe-14.34.31937.0.txt │ │ ├── ml.exe-14.34.31937.0.txt │ │ └── nmake.exe-14.34.31937.0.txt ├── 14.36.32532 │ └── Hostx64 │ │ ├── arm │ │ ├── armasm.exe-14.36.32534.0.txt │ │ ├── cl.exe-19.36.32534.0.txt │ │ ├── lib.exe-14.36.32534.0.txt │ │ ├── link.exe-14.36.32534.0.txt │ │ └── nmake.exe-14.36.32534.0.txt │ │ ├── arm64 │ │ ├── armasm64.exe-14.36.32534.0.txt │ │ ├── cl.exe-19.36.32534.0.txt │ │ ├── lib.exe-14.36.32534.0.txt │ │ ├── link.exe-14.36.32534.0.txt │ │ ├── ml64.exe-14.36.32534.0.txt │ │ └── nmake.exe-14.36.32534.0.txt │ │ ├── x64 │ │ ├── cl.exe-19.36.32534.0.txt │ │ ├── lib.exe-14.36.32534.0.txt │ │ ├── link.exe-14.36.32534.0.txt │ │ ├── ml64.exe-14.36.32534.0.txt │ │ └── nmake.exe-14.36.32534.0.txt │ │ └── x86 │ │ ├── cl.exe-19.36.32534.0.txt │ │ ├── lib.exe-14.36.32534.0.txt │ │ ├── link.exe-14.36.32534.0.txt │ │ ├── ml.exe-14.36.32534.0.txt │ │ └── nmake.exe-14.36.32534.0.txt ├── 14.37.32822-17.7.4 │ └── Hostx64 │ │ ├── arm │ │ ├── armasm.exe-14.37.32824.0.txt │ │ ├── cl.exe-19.37.32824.0.txt │ │ ├── lib.exe-14.37.32824.0.txt │ │ ├── link.exe-14.37.32824.0.txt │ │ └── nmake.exe-14.37.32824.0.txt │ │ ├── arm64 │ │ ├── armasm64.exe-14.37.32824.0.txt │ │ ├── cl.exe-19.37.32824.0.txt │ │ ├── lib.exe-14.37.32824.0.txt │ │ ├── link.exe-14.37.32824.0.txt │ │ ├── ml64.exe-14.37.32824.0.txt │ │ └── nmake.exe-14.37.32824.0.txt │ │ ├── x64 │ │ ├── cl.exe-19.37.32824.0.txt │ │ ├── lib.exe-14.37.32824.0.txt │ │ ├── link.exe-14.37.32824.0.txt │ │ ├── ml64.exe-14.37.32824.0.txt │ │ └── nmake.exe-14.37.32824.0.txt │ │ └── x86 │ │ ├── cl.exe-19.37.32824.0.txt │ │ ├── lib.exe-14.37.32824.0.txt │ │ ├── link.exe-14.37.32824.0.txt │ │ ├── ml.exe-14.37.32824.0.txt │ │ └── nmake.exe-14.37.32824.0.txt ├── 14.37.32822-17.7.5 │ └── Hostx64 │ │ ├── arm │ │ ├── armasm.exe-14.37.32825.0.txt │ │ ├── cl.exe-19.37.32825.0.txt │ │ ├── lib.exe-14.37.32825.0.txt │ │ ├── link.exe-14.37.32825.0.txt │ │ └── nmake.exe-14.37.32825.0.txt │ │ ├── arm64 │ │ ├── armasm64.exe-14.37.32825.0.txt │ │ ├── cl.exe-19.37.32825.0.txt │ │ ├── lib.exe-14.37.32825.0.txt │ │ ├── link.exe-14.37.32825.0.txt │ │ ├── ml64.exe-14.37.32825.0.txt │ │ └── nmake.exe-14.37.32825.0.txt │ │ ├── x64 │ │ ├── cl.exe-19.37.32825.0.txt │ │ ├── lib.exe-14.37.32825.0.txt │ │ ├── link.exe-14.37.32825.0.txt │ │ ├── ml64.exe-14.37.32825.0.txt │ │ └── nmake.exe-14.37.32825.0.txt │ │ └── x86 │ │ ├── cl.exe-19.37.32825.0.txt │ │ ├── lib.exe-14.37.32825.0.txt │ │ ├── link.exe-14.37.32825.0.txt │ │ ├── ml.exe-14.37.32825.0.txt │ │ └── nmake.exe-14.37.32825.0.txt ├── 8.0.50727.762 │ └── Hostx64 │ │ ├── cl.exe-14.00.50727.762.txt │ │ ├── lib.exe-8.00.50727.762.txt │ │ ├── link.exe-8.00.50727.762.txt │ │ ├── ml64.exe-8.00.50727.762.txt │ │ └── nmake.exe-8.00.50727.762.txt └── README.md ├── msvc.yaml └── tools ├── .flake8 ├── .python-version ├── GNUmakefile ├── IDAPython ├── black.cmd └── toolchain_prepare.py ├── LINK.exe.md.j2 ├── Pipfile ├── Pipfile.lock ├── activate ├── c1.dll.yml ├── c1xx.dll.yml ├── c2.dll.yml ├── clexe_documented.txt ├── extract-strings.cmd ├── extract-strings.py ├── helpers ├── .gitignore ├── GNUmakefile ├── README.md ├── get-help-output.ps1 ├── normalize-buildlogs.py ├── pyproject.toml ├── symdl.cmd └── symdl_global.cmd ├── install-python-prerequisites.cmd ├── install-python-prerequisites.sh ├── linkexe_documented.txt ├── msvc-undoc.ini ├── pyproject.toml ├── requirements.txt ├── rsrc_strings.json ├── update-docs ├── update-docs.py ├── update-yaml └── update-yaml.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/.gitignore -------------------------------------------------------------------------------- /InvokeCompilerPass/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/.clang-format -------------------------------------------------------------------------------- /InvokeCompilerPass/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/.editorconfig -------------------------------------------------------------------------------- /InvokeCompilerPass/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/.gitignore -------------------------------------------------------------------------------- /InvokeCompilerPass/.vsconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/.vsconfig -------------------------------------------------------------------------------- /InvokeCompilerPass/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/Directory.Build.props -------------------------------------------------------------------------------- /InvokeCompilerPass/ICPTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/ICPTest.cpp -------------------------------------------------------------------------------- /InvokeCompilerPass/ICPTest.vs17.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/ICPTest.vs17.vcxproj -------------------------------------------------------------------------------- /InvokeCompilerPass/ICPTest.vs17.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/ICPTest.vs17.vcxproj.filters -------------------------------------------------------------------------------- /InvokeCompilerPass/InvokeCompilerPass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/InvokeCompilerPass.cpp -------------------------------------------------------------------------------- /InvokeCompilerPass/InvokeCompilerPass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/InvokeCompilerPass.h -------------------------------------------------------------------------------- /InvokeCompilerPass/InvokeCompilerPass.vs17.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/InvokeCompilerPass.vs17.sln -------------------------------------------------------------------------------- /InvokeCompilerPass/InvokeCompilerPass.vs17.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/InvokeCompilerPass.vs17.vcxproj -------------------------------------------------------------------------------- /InvokeCompilerPass/InvokeCompilerPass.vs17.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/InvokeCompilerPass.vs17.vcxproj.filters -------------------------------------------------------------------------------- /InvokeCompilerPass/LuaBridge.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InvokeCompilerPass/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/README.md -------------------------------------------------------------------------------- /InvokeCompilerPass/check-ntnative.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/check-ntnative.sh -------------------------------------------------------------------------------- /InvokeCompilerPass/clang-reformat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/clang-reformat.sh -------------------------------------------------------------------------------- /InvokeCompilerPass/dllversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/dllversion.h -------------------------------------------------------------------------------- /InvokeCompilerPass/dllversion.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/dllversion.rc -------------------------------------------------------------------------------- /InvokeCompilerPass/fmt/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/fmt/.clang-format -------------------------------------------------------------------------------- /InvokeCompilerPass/fmt/LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/fmt/LICENSE.rst -------------------------------------------------------------------------------- /InvokeCompilerPass/fmt/include/fmt/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/fmt/include/fmt/args.h -------------------------------------------------------------------------------- /InvokeCompilerPass/fmt/include/fmt/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/fmt/include/fmt/chrono.h -------------------------------------------------------------------------------- /InvokeCompilerPass/fmt/include/fmt/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/fmt/include/fmt/color.h -------------------------------------------------------------------------------- /InvokeCompilerPass/fmt/include/fmt/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/fmt/include/fmt/compile.h -------------------------------------------------------------------------------- /InvokeCompilerPass/fmt/include/fmt/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/fmt/include/fmt/core.h -------------------------------------------------------------------------------- /InvokeCompilerPass/fmt/include/fmt/format-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/fmt/include/fmt/format-inl.h -------------------------------------------------------------------------------- /InvokeCompilerPass/fmt/include/fmt/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/fmt/include/fmt/format.h -------------------------------------------------------------------------------- /InvokeCompilerPass/fmt/include/fmt/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/fmt/include/fmt/os.h -------------------------------------------------------------------------------- /InvokeCompilerPass/fmt/include/fmt/ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/fmt/include/fmt/ostream.h -------------------------------------------------------------------------------- /InvokeCompilerPass/fmt/include/fmt/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/fmt/include/fmt/printf.h -------------------------------------------------------------------------------- /InvokeCompilerPass/fmt/include/fmt/ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/fmt/include/fmt/ranges.h -------------------------------------------------------------------------------- /InvokeCompilerPass/fmt/include/fmt/std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/fmt/include/fmt/std.h -------------------------------------------------------------------------------- /InvokeCompilerPass/fmt/include/fmt/xchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/fmt/include/fmt/xchar.h -------------------------------------------------------------------------------- /InvokeCompilerPass/fmt/src/fmt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/fmt/src/fmt.cc -------------------------------------------------------------------------------- /InvokeCompilerPass/fmt/src/format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/fmt/src/format.cc -------------------------------------------------------------------------------- /InvokeCompilerPass/fmt/src/os.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/fmt/src/os.cc -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/.clang-format: -------------------------------------------------------------------------------- 1 | DisableFormat: true 2 | -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/.gitignore -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/README.md -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/all -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/lapi.c -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/lapi.h -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/lauxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/lauxlib.c -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/lauxlib.h -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/lbaselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/lbaselib.c -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/lcode.c -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/lcode.h -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/lcorolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/lcorolib.c -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/lctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/lctype.c -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/lctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/lctype.h -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/ldblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/ldblib.c -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/ldebug.c -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/ldebug.h -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/ldo.c -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/ldo.h -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/ldump.c -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/lfunc.c -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/lfunc.h -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/lgc.c -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/lgc.h -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/linit.c -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/liolib.c -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/ljumptab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/ljumptab.h -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/llex.c -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/llex.h -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/llimits.h -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/lmathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/lmathlib.c -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/lmem.c -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/lmem.h -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/loadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/loadlib.c -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/lobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/lobject.c -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/lobject.h -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/lopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/lopcodes.c -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/lopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/lopcodes.h -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/lopnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/lopnames.h -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/loslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/loslib.c -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/lparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/lparser.c -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/lparser.h -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/lprefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/lprefix.h -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/lstate.c -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/lstate.h -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/lstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/lstring.c -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/lstring.h -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/lstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/lstrlib.c -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/ltable.c -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/ltable.h -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/ltablib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/ltablib.c -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/ltests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/ltests.c -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/ltests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/ltests.h -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/ltm.c -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/ltm.h -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/lua.c -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/lua.h -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/luaconf.h -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/lualib.h -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/lundump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/lundump.c -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/lundump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/lundump.h -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/lutf8lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/lutf8lib.c -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/lvm.c -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/lvm.h -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/lzio.c -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/lzio.h -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/makefile -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/manual/2html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/manual/2html -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/manual/manual.of: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/manual/manual.of -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/onelua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/onelua.c -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/testes/all.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/testes/all.lua -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/testes/api.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/testes/api.lua -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/testes/attrib.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/testes/attrib.lua -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/testes/big.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/testes/big.lua -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/testes/bitwise.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/testes/bitwise.lua -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/testes/bwcoercion.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/testes/bwcoercion.lua -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/testes/calls.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/testes/calls.lua -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/testes/closure.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/testes/closure.lua -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/testes/code.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/testes/code.lua -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/testes/constructs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/testes/constructs.lua -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/testes/coroutine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/testes/coroutine.lua -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/testes/cstack.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/testes/cstack.lua -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/testes/db.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/testes/db.lua -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/testes/errors.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/testes/errors.lua -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/testes/events.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/testes/events.lua -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/testes/files.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/testes/files.lua -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/testes/gc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/testes/gc.lua -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/testes/gengc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/testes/gengc.lua -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/testes/goto.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/testes/goto.lua -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/testes/heavy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/testes/heavy.lua -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/testes/libs/P1/dummy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/testes/libs/P1/dummy -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/testes/libs/lib1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/testes/libs/lib1.c -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/testes/libs/lib11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/testes/libs/lib11.c -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/testes/libs/lib2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/testes/libs/lib2.c -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/testes/libs/lib21.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/testes/libs/lib21.c -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/testes/libs/lib22.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/testes/libs/lib22.c -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/testes/libs/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/testes/libs/makefile -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/testes/literals.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/testes/literals.lua -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/testes/locals.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/testes/locals.lua -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/testes/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/testes/main.lua -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/testes/math.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/testes/math.lua -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/testes/nextvar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/testes/nextvar.lua -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/testes/packtests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/testes/packtests -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/testes/pm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/testes/pm.lua -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/testes/sort.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/testes/sort.lua -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/testes/strings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/testes/strings.lua -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/testes/tpack.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/testes/tpack.lua -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/testes/tracegc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/testes/tracegc.lua -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/testes/utf8.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/testes/utf8.lua -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/testes/vararg.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/testes/vararg.lua -------------------------------------------------------------------------------- /InvokeCompilerPass/lua/testes/verybig.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/lua/testes/verybig.lua -------------------------------------------------------------------------------- /InvokeCompilerPass/luaall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/luaall.c -------------------------------------------------------------------------------- /InvokeCompilerPass/ntnative.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/ntnative.h -------------------------------------------------------------------------------- /InvokeCompilerPass/ntpebldr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/ntpebldr.h -------------------------------------------------------------------------------- /InvokeCompilerPass/premake4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/premake4.lua -------------------------------------------------------------------------------- /InvokeCompilerPass/project.early.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/project.early.props -------------------------------------------------------------------------------- /InvokeCompilerPass/project.late.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/project.late.props -------------------------------------------------------------------------------- /InvokeCompilerPass/utfcpp/.clang-format: -------------------------------------------------------------------------------- 1 | DisableFormat: true 2 | -------------------------------------------------------------------------------- /InvokeCompilerPass/utfcpp/source/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/utfcpp/source/utf8.h -------------------------------------------------------------------------------- /InvokeCompilerPass/utfcpp/source/utf8/checked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/utfcpp/source/utf8/checked.h -------------------------------------------------------------------------------- /InvokeCompilerPass/utfcpp/source/utf8/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/utfcpp/source/utf8/core.h -------------------------------------------------------------------------------- /InvokeCompilerPass/utfcpp/source/utf8/cpp11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/utfcpp/source/utf8/cpp11.h -------------------------------------------------------------------------------- /InvokeCompilerPass/utfcpp/source/utf8/cpp17.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/utfcpp/source/utf8/cpp17.h -------------------------------------------------------------------------------- /InvokeCompilerPass/utfcpp/source/utf8/unchecked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/InvokeCompilerPass/utfcpp/source/utf8/unchecked.h -------------------------------------------------------------------------------- /LINK.exe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/LINK.exe.md -------------------------------------------------------------------------------- /NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/NOTES.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/README.md -------------------------------------------------------------------------------- /UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/UNLICENSE -------------------------------------------------------------------------------- /help-output/14.29.30133-16.11.30/Hostx64/arm/armasm.exe-14.29.30152.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.29.30133-16.11.30/Hostx64/arm/armasm.exe-14.29.30152.0.txt -------------------------------------------------------------------------------- /help-output/14.29.30133-16.11.30/Hostx64/arm/cl.exe-19.29.30152.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.29.30133-16.11.30/Hostx64/arm/cl.exe-19.29.30152.0.txt -------------------------------------------------------------------------------- /help-output/14.29.30133-16.11.30/Hostx64/arm/lib.exe-14.29.30152.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.29.30133-16.11.30/Hostx64/arm/lib.exe-14.29.30152.0.txt -------------------------------------------------------------------------------- /help-output/14.29.30133-16.11.30/Hostx64/arm/link.exe-14.29.30152.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.29.30133-16.11.30/Hostx64/arm/link.exe-14.29.30152.0.txt -------------------------------------------------------------------------------- /help-output/14.29.30133-16.11.30/Hostx64/arm/nmake.exe-14.29.30152.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.29.30133-16.11.30/Hostx64/arm/nmake.exe-14.29.30152.0.txt -------------------------------------------------------------------------------- /help-output/14.29.30133-16.11.30/Hostx64/arm64/armasm64.exe-14.29.30152.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.29.30133-16.11.30/Hostx64/arm64/armasm64.exe-14.29.30152.0.txt -------------------------------------------------------------------------------- /help-output/14.29.30133-16.11.30/Hostx64/arm64/cl.exe-19.29.30152.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.29.30133-16.11.30/Hostx64/arm64/cl.exe-19.29.30152.0.txt -------------------------------------------------------------------------------- /help-output/14.29.30133-16.11.30/Hostx64/arm64/lib.exe-14.29.30152.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.29.30133-16.11.30/Hostx64/arm64/lib.exe-14.29.30152.0.txt -------------------------------------------------------------------------------- /help-output/14.29.30133-16.11.30/Hostx64/arm64/link.exe-14.29.30152.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.29.30133-16.11.30/Hostx64/arm64/link.exe-14.29.30152.0.txt -------------------------------------------------------------------------------- /help-output/14.29.30133-16.11.30/Hostx64/arm64/ml64.exe-14.29.30152.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.29.30133-16.11.30/Hostx64/arm64/ml64.exe-14.29.30152.0.txt -------------------------------------------------------------------------------- /help-output/14.29.30133-16.11.30/Hostx64/arm64/nmake.exe-14.29.30152.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.29.30133-16.11.30/Hostx64/arm64/nmake.exe-14.29.30152.0.txt -------------------------------------------------------------------------------- /help-output/14.29.30133-16.11.30/Hostx64/x64/cl.exe-19.29.30152.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.29.30133-16.11.30/Hostx64/x64/cl.exe-19.29.30152.0.txt -------------------------------------------------------------------------------- /help-output/14.29.30133-16.11.30/Hostx64/x64/lib.exe-14.29.30152.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.29.30133-16.11.30/Hostx64/x64/lib.exe-14.29.30152.0.txt -------------------------------------------------------------------------------- /help-output/14.29.30133-16.11.30/Hostx64/x64/link.exe-14.29.30152.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.29.30133-16.11.30/Hostx64/x64/link.exe-14.29.30152.0.txt -------------------------------------------------------------------------------- /help-output/14.29.30133-16.11.30/Hostx64/x64/ml64.exe-14.29.30152.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.29.30133-16.11.30/Hostx64/x64/ml64.exe-14.29.30152.0.txt -------------------------------------------------------------------------------- /help-output/14.29.30133-16.11.30/Hostx64/x64/nmake.exe-14.29.30152.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.29.30133-16.11.30/Hostx64/x64/nmake.exe-14.29.30152.0.txt -------------------------------------------------------------------------------- /help-output/14.29.30133-16.11.30/Hostx64/x86/cl.exe-19.29.30152.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.29.30133-16.11.30/Hostx64/x86/cl.exe-19.29.30152.0.txt -------------------------------------------------------------------------------- /help-output/14.29.30133-16.11.30/Hostx64/x86/lib.exe-14.29.30152.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.29.30133-16.11.30/Hostx64/x86/lib.exe-14.29.30152.0.txt -------------------------------------------------------------------------------- /help-output/14.29.30133-16.11.30/Hostx64/x86/link.exe-14.29.30152.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.29.30133-16.11.30/Hostx64/x86/link.exe-14.29.30152.0.txt -------------------------------------------------------------------------------- /help-output/14.29.30133-16.11.30/Hostx64/x86/ml.exe-14.29.30152.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.29.30133-16.11.30/Hostx64/x86/ml.exe-14.29.30152.0.txt -------------------------------------------------------------------------------- /help-output/14.29.30133-16.11.30/Hostx64/x86/nmake.exe-14.29.30152.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.29.30133-16.11.30/Hostx64/x86/nmake.exe-14.29.30152.0.txt -------------------------------------------------------------------------------- /help-output/14.29.30133/Hostx64/arm/armasm.exe-14.29.30151.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.29.30133/Hostx64/arm/armasm.exe-14.29.30151.0.txt -------------------------------------------------------------------------------- /help-output/14.29.30133/Hostx64/arm/cl.exe-19.29.30151.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.29.30133/Hostx64/arm/cl.exe-19.29.30151.0.txt -------------------------------------------------------------------------------- /help-output/14.29.30133/Hostx64/arm/lib.exe-14.29.30151.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.29.30133/Hostx64/arm/lib.exe-14.29.30151.0.txt -------------------------------------------------------------------------------- /help-output/14.29.30133/Hostx64/arm/link.exe-14.29.30151.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.29.30133/Hostx64/arm/link.exe-14.29.30151.0.txt -------------------------------------------------------------------------------- /help-output/14.29.30133/Hostx64/arm/nmake.exe-14.29.30151.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.29.30133/Hostx64/arm/nmake.exe-14.29.30151.0.txt -------------------------------------------------------------------------------- /help-output/14.29.30133/Hostx64/arm64/armasm64.exe-14.29.30151.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.29.30133/Hostx64/arm64/armasm64.exe-14.29.30151.0.txt -------------------------------------------------------------------------------- /help-output/14.29.30133/Hostx64/arm64/cl.exe-19.29.30151.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.29.30133/Hostx64/arm64/cl.exe-19.29.30151.0.txt -------------------------------------------------------------------------------- /help-output/14.29.30133/Hostx64/arm64/lib.exe-14.29.30151.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.29.30133/Hostx64/arm64/lib.exe-14.29.30151.0.txt -------------------------------------------------------------------------------- /help-output/14.29.30133/Hostx64/arm64/link.exe-14.29.30151.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.29.30133/Hostx64/arm64/link.exe-14.29.30151.0.txt -------------------------------------------------------------------------------- /help-output/14.29.30133/Hostx64/arm64/ml64.exe-14.29.30151.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.29.30133/Hostx64/arm64/ml64.exe-14.29.30151.0.txt -------------------------------------------------------------------------------- /help-output/14.29.30133/Hostx64/arm64/nmake.exe-14.29.30151.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.29.30133/Hostx64/arm64/nmake.exe-14.29.30151.0.txt -------------------------------------------------------------------------------- /help-output/14.29.30133/Hostx64/x64/cl.exe-19.29.30151.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.29.30133/Hostx64/x64/cl.exe-19.29.30151.0.txt -------------------------------------------------------------------------------- /help-output/14.29.30133/Hostx64/x64/lib.exe-14.29.30151.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.29.30133/Hostx64/x64/lib.exe-14.29.30151.0.txt -------------------------------------------------------------------------------- /help-output/14.29.30133/Hostx64/x64/link.exe-14.29.30151.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.29.30133/Hostx64/x64/link.exe-14.29.30151.0.txt -------------------------------------------------------------------------------- /help-output/14.29.30133/Hostx64/x64/ml64.exe-14.29.30151.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.29.30133/Hostx64/x64/ml64.exe-14.29.30151.0.txt -------------------------------------------------------------------------------- /help-output/14.29.30133/Hostx64/x64/nmake.exe-14.29.30151.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.29.30133/Hostx64/x64/nmake.exe-14.29.30151.0.txt -------------------------------------------------------------------------------- /help-output/14.29.30133/Hostx64/x86/cl.exe-19.29.30151.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.29.30133/Hostx64/x86/cl.exe-19.29.30151.0.txt -------------------------------------------------------------------------------- /help-output/14.29.30133/Hostx64/x86/lib.exe-14.29.30151.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.29.30133/Hostx64/x86/lib.exe-14.29.30151.0.txt -------------------------------------------------------------------------------- /help-output/14.29.30133/Hostx64/x86/link.exe-14.29.30151.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.29.30133/Hostx64/x86/link.exe-14.29.30151.0.txt -------------------------------------------------------------------------------- /help-output/14.29.30133/Hostx64/x86/ml.exe-14.29.30151.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.29.30133/Hostx64/x86/ml.exe-14.29.30151.0.txt -------------------------------------------------------------------------------- /help-output/14.29.30133/Hostx64/x86/nmake.exe-14.29.30151.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.29.30133/Hostx64/x86/nmake.exe-14.29.30151.0.txt -------------------------------------------------------------------------------- /help-output/14.34.31933/Hostx64/x64/cl.exe-19.34.31937.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.34.31933/Hostx64/x64/cl.exe-19.34.31937.0.txt -------------------------------------------------------------------------------- /help-output/14.34.31933/Hostx64/x64/link.exe-14.34.31937.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.34.31933/Hostx64/x64/link.exe-14.34.31937.0.txt -------------------------------------------------------------------------------- /help-output/14.34.31933/Hostx64/x64/ml64.exe-14.34.31937.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.34.31933/Hostx64/x64/ml64.exe-14.34.31937.0.txt -------------------------------------------------------------------------------- /help-output/14.34.31933/Hostx64/x64/nmake.exe-14.34.31937.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.34.31933/Hostx64/x64/nmake.exe-14.34.31937.0.txt -------------------------------------------------------------------------------- /help-output/14.34.31933/Hostx64/x86/cl.exe-19.34.31937.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.34.31933/Hostx64/x86/cl.exe-19.34.31937.0.txt -------------------------------------------------------------------------------- /help-output/14.34.31933/Hostx64/x86/link.exe-14.34.31937.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.34.31933/Hostx64/x86/link.exe-14.34.31937.0.txt -------------------------------------------------------------------------------- /help-output/14.34.31933/Hostx64/x86/ml.exe-14.34.31937.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.34.31933/Hostx64/x86/ml.exe-14.34.31937.0.txt -------------------------------------------------------------------------------- /help-output/14.34.31933/Hostx64/x86/nmake.exe-14.34.31937.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.34.31933/Hostx64/x86/nmake.exe-14.34.31937.0.txt -------------------------------------------------------------------------------- /help-output/14.36.32532/Hostx64/arm/armasm.exe-14.36.32534.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.36.32532/Hostx64/arm/armasm.exe-14.36.32534.0.txt -------------------------------------------------------------------------------- /help-output/14.36.32532/Hostx64/arm/cl.exe-19.36.32534.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.36.32532/Hostx64/arm/cl.exe-19.36.32534.0.txt -------------------------------------------------------------------------------- /help-output/14.36.32532/Hostx64/arm/lib.exe-14.36.32534.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.36.32532/Hostx64/arm/lib.exe-14.36.32534.0.txt -------------------------------------------------------------------------------- /help-output/14.36.32532/Hostx64/arm/link.exe-14.36.32534.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.36.32532/Hostx64/arm/link.exe-14.36.32534.0.txt -------------------------------------------------------------------------------- /help-output/14.36.32532/Hostx64/arm/nmake.exe-14.36.32534.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.36.32532/Hostx64/arm/nmake.exe-14.36.32534.0.txt -------------------------------------------------------------------------------- /help-output/14.36.32532/Hostx64/arm64/armasm64.exe-14.36.32534.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.36.32532/Hostx64/arm64/armasm64.exe-14.36.32534.0.txt -------------------------------------------------------------------------------- /help-output/14.36.32532/Hostx64/arm64/cl.exe-19.36.32534.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.36.32532/Hostx64/arm64/cl.exe-19.36.32534.0.txt -------------------------------------------------------------------------------- /help-output/14.36.32532/Hostx64/arm64/lib.exe-14.36.32534.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.36.32532/Hostx64/arm64/lib.exe-14.36.32534.0.txt -------------------------------------------------------------------------------- /help-output/14.36.32532/Hostx64/arm64/link.exe-14.36.32534.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.36.32532/Hostx64/arm64/link.exe-14.36.32534.0.txt -------------------------------------------------------------------------------- /help-output/14.36.32532/Hostx64/arm64/ml64.exe-14.36.32534.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.36.32532/Hostx64/arm64/ml64.exe-14.36.32534.0.txt -------------------------------------------------------------------------------- /help-output/14.36.32532/Hostx64/arm64/nmake.exe-14.36.32534.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.36.32532/Hostx64/arm64/nmake.exe-14.36.32534.0.txt -------------------------------------------------------------------------------- /help-output/14.36.32532/Hostx64/x64/cl.exe-19.36.32534.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.36.32532/Hostx64/x64/cl.exe-19.36.32534.0.txt -------------------------------------------------------------------------------- /help-output/14.36.32532/Hostx64/x64/lib.exe-14.36.32534.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.36.32532/Hostx64/x64/lib.exe-14.36.32534.0.txt -------------------------------------------------------------------------------- /help-output/14.36.32532/Hostx64/x64/link.exe-14.36.32534.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.36.32532/Hostx64/x64/link.exe-14.36.32534.0.txt -------------------------------------------------------------------------------- /help-output/14.36.32532/Hostx64/x64/ml64.exe-14.36.32534.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.36.32532/Hostx64/x64/ml64.exe-14.36.32534.0.txt -------------------------------------------------------------------------------- /help-output/14.36.32532/Hostx64/x64/nmake.exe-14.36.32534.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.36.32532/Hostx64/x64/nmake.exe-14.36.32534.0.txt -------------------------------------------------------------------------------- /help-output/14.36.32532/Hostx64/x86/cl.exe-19.36.32534.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.36.32532/Hostx64/x86/cl.exe-19.36.32534.0.txt -------------------------------------------------------------------------------- /help-output/14.36.32532/Hostx64/x86/lib.exe-14.36.32534.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.36.32532/Hostx64/x86/lib.exe-14.36.32534.0.txt -------------------------------------------------------------------------------- /help-output/14.36.32532/Hostx64/x86/link.exe-14.36.32534.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.36.32532/Hostx64/x86/link.exe-14.36.32534.0.txt -------------------------------------------------------------------------------- /help-output/14.36.32532/Hostx64/x86/ml.exe-14.36.32534.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.36.32532/Hostx64/x86/ml.exe-14.36.32534.0.txt -------------------------------------------------------------------------------- /help-output/14.36.32532/Hostx64/x86/nmake.exe-14.36.32534.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.36.32532/Hostx64/x86/nmake.exe-14.36.32534.0.txt -------------------------------------------------------------------------------- /help-output/14.37.32822-17.7.4/Hostx64/arm/armasm.exe-14.37.32824.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.37.32822-17.7.4/Hostx64/arm/armasm.exe-14.37.32824.0.txt -------------------------------------------------------------------------------- /help-output/14.37.32822-17.7.4/Hostx64/arm/cl.exe-19.37.32824.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.37.32822-17.7.4/Hostx64/arm/cl.exe-19.37.32824.0.txt -------------------------------------------------------------------------------- /help-output/14.37.32822-17.7.4/Hostx64/arm/lib.exe-14.37.32824.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.37.32822-17.7.4/Hostx64/arm/lib.exe-14.37.32824.0.txt -------------------------------------------------------------------------------- /help-output/14.37.32822-17.7.4/Hostx64/arm/link.exe-14.37.32824.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.37.32822-17.7.4/Hostx64/arm/link.exe-14.37.32824.0.txt -------------------------------------------------------------------------------- /help-output/14.37.32822-17.7.4/Hostx64/arm/nmake.exe-14.37.32824.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.37.32822-17.7.4/Hostx64/arm/nmake.exe-14.37.32824.0.txt -------------------------------------------------------------------------------- /help-output/14.37.32822-17.7.4/Hostx64/arm64/armasm64.exe-14.37.32824.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.37.32822-17.7.4/Hostx64/arm64/armasm64.exe-14.37.32824.0.txt -------------------------------------------------------------------------------- /help-output/14.37.32822-17.7.4/Hostx64/arm64/cl.exe-19.37.32824.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.37.32822-17.7.4/Hostx64/arm64/cl.exe-19.37.32824.0.txt -------------------------------------------------------------------------------- /help-output/14.37.32822-17.7.4/Hostx64/arm64/lib.exe-14.37.32824.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.37.32822-17.7.4/Hostx64/arm64/lib.exe-14.37.32824.0.txt -------------------------------------------------------------------------------- /help-output/14.37.32822-17.7.4/Hostx64/arm64/link.exe-14.37.32824.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.37.32822-17.7.4/Hostx64/arm64/link.exe-14.37.32824.0.txt -------------------------------------------------------------------------------- /help-output/14.37.32822-17.7.4/Hostx64/arm64/ml64.exe-14.37.32824.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.37.32822-17.7.4/Hostx64/arm64/ml64.exe-14.37.32824.0.txt -------------------------------------------------------------------------------- /help-output/14.37.32822-17.7.4/Hostx64/arm64/nmake.exe-14.37.32824.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.37.32822-17.7.4/Hostx64/arm64/nmake.exe-14.37.32824.0.txt -------------------------------------------------------------------------------- /help-output/14.37.32822-17.7.4/Hostx64/x64/cl.exe-19.37.32824.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.37.32822-17.7.4/Hostx64/x64/cl.exe-19.37.32824.0.txt -------------------------------------------------------------------------------- /help-output/14.37.32822-17.7.4/Hostx64/x64/lib.exe-14.37.32824.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.37.32822-17.7.4/Hostx64/x64/lib.exe-14.37.32824.0.txt -------------------------------------------------------------------------------- /help-output/14.37.32822-17.7.4/Hostx64/x64/link.exe-14.37.32824.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.37.32822-17.7.4/Hostx64/x64/link.exe-14.37.32824.0.txt -------------------------------------------------------------------------------- /help-output/14.37.32822-17.7.4/Hostx64/x64/ml64.exe-14.37.32824.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.37.32822-17.7.4/Hostx64/x64/ml64.exe-14.37.32824.0.txt -------------------------------------------------------------------------------- /help-output/14.37.32822-17.7.4/Hostx64/x64/nmake.exe-14.37.32824.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.37.32822-17.7.4/Hostx64/x64/nmake.exe-14.37.32824.0.txt -------------------------------------------------------------------------------- /help-output/14.37.32822-17.7.4/Hostx64/x86/cl.exe-19.37.32824.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.37.32822-17.7.4/Hostx64/x86/cl.exe-19.37.32824.0.txt -------------------------------------------------------------------------------- /help-output/14.37.32822-17.7.4/Hostx64/x86/lib.exe-14.37.32824.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.37.32822-17.7.4/Hostx64/x86/lib.exe-14.37.32824.0.txt -------------------------------------------------------------------------------- /help-output/14.37.32822-17.7.4/Hostx64/x86/link.exe-14.37.32824.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.37.32822-17.7.4/Hostx64/x86/link.exe-14.37.32824.0.txt -------------------------------------------------------------------------------- /help-output/14.37.32822-17.7.4/Hostx64/x86/ml.exe-14.37.32824.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.37.32822-17.7.4/Hostx64/x86/ml.exe-14.37.32824.0.txt -------------------------------------------------------------------------------- /help-output/14.37.32822-17.7.4/Hostx64/x86/nmake.exe-14.37.32824.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.37.32822-17.7.4/Hostx64/x86/nmake.exe-14.37.32824.0.txt -------------------------------------------------------------------------------- /help-output/14.37.32822-17.7.5/Hostx64/arm/armasm.exe-14.37.32825.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.37.32822-17.7.5/Hostx64/arm/armasm.exe-14.37.32825.0.txt -------------------------------------------------------------------------------- /help-output/14.37.32822-17.7.5/Hostx64/arm/cl.exe-19.37.32825.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.37.32822-17.7.5/Hostx64/arm/cl.exe-19.37.32825.0.txt -------------------------------------------------------------------------------- /help-output/14.37.32822-17.7.5/Hostx64/arm/lib.exe-14.37.32825.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.37.32822-17.7.5/Hostx64/arm/lib.exe-14.37.32825.0.txt -------------------------------------------------------------------------------- /help-output/14.37.32822-17.7.5/Hostx64/arm/link.exe-14.37.32825.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.37.32822-17.7.5/Hostx64/arm/link.exe-14.37.32825.0.txt -------------------------------------------------------------------------------- /help-output/14.37.32822-17.7.5/Hostx64/arm/nmake.exe-14.37.32825.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.37.32822-17.7.5/Hostx64/arm/nmake.exe-14.37.32825.0.txt -------------------------------------------------------------------------------- /help-output/14.37.32822-17.7.5/Hostx64/arm64/armasm64.exe-14.37.32825.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.37.32822-17.7.5/Hostx64/arm64/armasm64.exe-14.37.32825.0.txt -------------------------------------------------------------------------------- /help-output/14.37.32822-17.7.5/Hostx64/arm64/cl.exe-19.37.32825.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.37.32822-17.7.5/Hostx64/arm64/cl.exe-19.37.32825.0.txt -------------------------------------------------------------------------------- /help-output/14.37.32822-17.7.5/Hostx64/arm64/lib.exe-14.37.32825.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.37.32822-17.7.5/Hostx64/arm64/lib.exe-14.37.32825.0.txt -------------------------------------------------------------------------------- /help-output/14.37.32822-17.7.5/Hostx64/arm64/link.exe-14.37.32825.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.37.32822-17.7.5/Hostx64/arm64/link.exe-14.37.32825.0.txt -------------------------------------------------------------------------------- /help-output/14.37.32822-17.7.5/Hostx64/arm64/ml64.exe-14.37.32825.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.37.32822-17.7.5/Hostx64/arm64/ml64.exe-14.37.32825.0.txt -------------------------------------------------------------------------------- /help-output/14.37.32822-17.7.5/Hostx64/arm64/nmake.exe-14.37.32825.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.37.32822-17.7.5/Hostx64/arm64/nmake.exe-14.37.32825.0.txt -------------------------------------------------------------------------------- /help-output/14.37.32822-17.7.5/Hostx64/x64/cl.exe-19.37.32825.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.37.32822-17.7.5/Hostx64/x64/cl.exe-19.37.32825.0.txt -------------------------------------------------------------------------------- /help-output/14.37.32822-17.7.5/Hostx64/x64/lib.exe-14.37.32825.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.37.32822-17.7.5/Hostx64/x64/lib.exe-14.37.32825.0.txt -------------------------------------------------------------------------------- /help-output/14.37.32822-17.7.5/Hostx64/x64/link.exe-14.37.32825.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.37.32822-17.7.5/Hostx64/x64/link.exe-14.37.32825.0.txt -------------------------------------------------------------------------------- /help-output/14.37.32822-17.7.5/Hostx64/x64/ml64.exe-14.37.32825.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.37.32822-17.7.5/Hostx64/x64/ml64.exe-14.37.32825.0.txt -------------------------------------------------------------------------------- /help-output/14.37.32822-17.7.5/Hostx64/x64/nmake.exe-14.37.32825.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.37.32822-17.7.5/Hostx64/x64/nmake.exe-14.37.32825.0.txt -------------------------------------------------------------------------------- /help-output/14.37.32822-17.7.5/Hostx64/x86/cl.exe-19.37.32825.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.37.32822-17.7.5/Hostx64/x86/cl.exe-19.37.32825.0.txt -------------------------------------------------------------------------------- /help-output/14.37.32822-17.7.5/Hostx64/x86/lib.exe-14.37.32825.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.37.32822-17.7.5/Hostx64/x86/lib.exe-14.37.32825.0.txt -------------------------------------------------------------------------------- /help-output/14.37.32822-17.7.5/Hostx64/x86/link.exe-14.37.32825.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.37.32822-17.7.5/Hostx64/x86/link.exe-14.37.32825.0.txt -------------------------------------------------------------------------------- /help-output/14.37.32822-17.7.5/Hostx64/x86/ml.exe-14.37.32825.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.37.32822-17.7.5/Hostx64/x86/ml.exe-14.37.32825.0.txt -------------------------------------------------------------------------------- /help-output/14.37.32822-17.7.5/Hostx64/x86/nmake.exe-14.37.32825.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/14.37.32822-17.7.5/Hostx64/x86/nmake.exe-14.37.32825.0.txt -------------------------------------------------------------------------------- /help-output/8.0.50727.762/Hostx64/cl.exe-14.00.50727.762.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/8.0.50727.762/Hostx64/cl.exe-14.00.50727.762.txt -------------------------------------------------------------------------------- /help-output/8.0.50727.762/Hostx64/lib.exe-8.00.50727.762.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/8.0.50727.762/Hostx64/lib.exe-8.00.50727.762.txt -------------------------------------------------------------------------------- /help-output/8.0.50727.762/Hostx64/link.exe-8.00.50727.762.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/8.0.50727.762/Hostx64/link.exe-8.00.50727.762.txt -------------------------------------------------------------------------------- /help-output/8.0.50727.762/Hostx64/ml64.exe-8.00.50727.762.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/8.0.50727.762/Hostx64/ml64.exe-8.00.50727.762.txt -------------------------------------------------------------------------------- /help-output/8.0.50727.762/Hostx64/nmake.exe-8.00.50727.762.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/8.0.50727.762/Hostx64/nmake.exe-8.00.50727.762.txt -------------------------------------------------------------------------------- /help-output/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/help-output/README.md -------------------------------------------------------------------------------- /msvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/msvc.yaml -------------------------------------------------------------------------------- /tools/.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/tools/.flake8 -------------------------------------------------------------------------------- /tools/.python-version: -------------------------------------------------------------------------------- 1 | 3.11.5 2 | -------------------------------------------------------------------------------- /tools/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/tools/GNUmakefile -------------------------------------------------------------------------------- /tools/IDAPython/black.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/tools/IDAPython/black.cmd -------------------------------------------------------------------------------- /tools/IDAPython/toolchain_prepare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/tools/IDAPython/toolchain_prepare.py -------------------------------------------------------------------------------- /tools/LINK.exe.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/tools/LINK.exe.md.j2 -------------------------------------------------------------------------------- /tools/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/tools/Pipfile -------------------------------------------------------------------------------- /tools/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/tools/Pipfile.lock -------------------------------------------------------------------------------- /tools/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/tools/activate -------------------------------------------------------------------------------- /tools/c1.dll.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/tools/c1.dll.yml -------------------------------------------------------------------------------- /tools/c1xx.dll.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/tools/c1xx.dll.yml -------------------------------------------------------------------------------- /tools/c2.dll.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/tools/c2.dll.yml -------------------------------------------------------------------------------- /tools/clexe_documented.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/tools/clexe_documented.txt -------------------------------------------------------------------------------- /tools/extract-strings.cmd: -------------------------------------------------------------------------------- 1 | py -3 "%~dpn0.py" %* -------------------------------------------------------------------------------- /tools/extract-strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/tools/extract-strings.py -------------------------------------------------------------------------------- /tools/helpers/.gitignore: -------------------------------------------------------------------------------- 1 | BuildCommandLines-*.log 2 | -------------------------------------------------------------------------------- /tools/helpers/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/tools/helpers/GNUmakefile -------------------------------------------------------------------------------- /tools/helpers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/tools/helpers/README.md -------------------------------------------------------------------------------- /tools/helpers/get-help-output.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/tools/helpers/get-help-output.ps1 -------------------------------------------------------------------------------- /tools/helpers/normalize-buildlogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/tools/helpers/normalize-buildlogs.py -------------------------------------------------------------------------------- /tools/helpers/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/tools/helpers/pyproject.toml -------------------------------------------------------------------------------- /tools/helpers/symdl.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/tools/helpers/symdl.cmd -------------------------------------------------------------------------------- /tools/helpers/symdl_global.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/tools/helpers/symdl_global.cmd -------------------------------------------------------------------------------- /tools/install-python-prerequisites.cmd: -------------------------------------------------------------------------------- 1 | py -3 -m pip install --user -U -r "%~dp0requirements.txt" 2 | @pause 3 | -------------------------------------------------------------------------------- /tools/install-python-prerequisites.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/tools/install-python-prerequisites.sh -------------------------------------------------------------------------------- /tools/linkexe_documented.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/tools/linkexe_documented.txt -------------------------------------------------------------------------------- /tools/msvc-undoc.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/tools/msvc-undoc.ini -------------------------------------------------------------------------------- /tools/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/tools/pyproject.toml -------------------------------------------------------------------------------- /tools/requirements.txt: -------------------------------------------------------------------------------- 1 | black 2 | flake8 3 | jinja2 4 | vulture 5 | PyYAML 6 | -------------------------------------------------------------------------------- /tools/rsrc_strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/tools/rsrc_strings.json -------------------------------------------------------------------------------- /tools/update-docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/tools/update-docs -------------------------------------------------------------------------------- /tools/update-docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/tools/update-docs.py -------------------------------------------------------------------------------- /tools/update-yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/tools/update-yaml -------------------------------------------------------------------------------- /tools/update-yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assarbad/msvc-undoc/HEAD/tools/update-yaml.py --------------------------------------------------------------------------------