├── .gitignore ├── CMakeLists.txt ├── Include ├── ClangParsing │ ├── ASTConsumer.cpp │ ├── ASTConsumer.h │ ├── ASTFrontendAction.cpp │ ├── ASTFrontendAction.h │ ├── ASTVisitorGlobal.cpp │ ├── ASTVisitorGlobal.h │ ├── ASTVisitorLocal.cpp │ ├── ASTVisitorLocal.h │ ├── CommandLineOptions.cpp │ ├── CommandLineOptions.h │ ├── GlobalDecls.cpp │ ├── GlobalDecls.h │ └── Helpers │ │ ├── FunctionData.cpp │ │ ├── FunctionData.h │ │ ├── Script.cpp │ │ ├── Script.h │ │ ├── StaticData.cpp │ │ └── StaticData.h ├── Compiler │ ├── BuildTarget.h │ ├── Compiler.cpp │ ├── Compiler.h │ ├── Opcode.cpp │ ├── Opcode.h │ └── OpcodeConsts.h ├── Compression │ ├── SourceAnnotations.H │ ├── sal.h │ ├── xcompress.h │ ├── zconf.h │ └── zlib.h ├── Crypto │ ├── aes256.c │ └── aes256.h ├── Utils │ ├── ClangUtils.cpp │ ├── ClangUtils.h │ ├── ConsoleColor.h │ ├── ConstExpr.h │ ├── Utils.cpp │ ├── Utils.h │ └── rapidxml │ │ ├── license.txt │ │ ├── rapidxml.hpp │ │ ├── rapidxml_iterators.hpp │ │ ├── rapidxml_print.hpp │ │ └── rapidxml_utils.hpp └── Version │ └── Version.h ├── README.md ├── SC-CL.cpp ├── bin ├── Debug │ └── show_help.bat ├── Release │ ├── PC_Natives.bin │ ├── xcompress32.dll │ └── zlib1.dll ├── include │ ├── GTAIV │ │ ├── consts32.h │ │ ├── natives32.h │ │ └── natives32Old.h │ ├── GTAV │ │ ├── consts32.h │ │ ├── consts64.h │ │ ├── constsShared.h │ │ ├── natives32.h │ │ └── natives64.h │ ├── RDR │ │ ├── consts32.h │ │ └── natives32.h │ ├── common.c │ ├── common.h │ ├── constants.h │ ├── intrinsics.h │ ├── natives.h │ ├── types.h │ └── varargs.h └── projects │ ├── MenuBase │ ├── Include │ │ ├── Menu Internals │ │ │ ├── ItemExecution.c │ │ │ ├── ItemExecution.h │ │ │ ├── MenuExecutionHandling.c │ │ │ ├── MenuExecutionHandling.h │ │ │ ├── MenuUiHandling.c │ │ │ └── MenuUiHandling.h │ │ └── Utilities │ │ │ ├── Memory.c │ │ │ ├── Memory.h │ │ │ ├── Utils.c │ │ │ └── Utils.h │ ├── MenuBase.c │ ├── MenuBase.sln │ ├── MenuBase.vcxproj │ ├── MenuBase.vcxproj.filters │ └── MenuBase.vcxproj.user │ ├── printfTest.c │ └── testing │ ├── compile.bat │ ├── funcs.c │ ├── inc.c │ ├── inc.h │ ├── rdr2_test.c │ ├── test.VC.db │ ├── test.c │ ├── test.sln │ ├── test.vcxproj │ ├── test.vcxproj.filters │ └── test.vcxproj.user ├── contributors.txt └── lib ├── xcompress64.lib └── zlibstatic.lib /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Include/ClangParsing/ASTConsumer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/Include/ClangParsing/ASTConsumer.cpp -------------------------------------------------------------------------------- /Include/ClangParsing/ASTConsumer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/Include/ClangParsing/ASTConsumer.h -------------------------------------------------------------------------------- /Include/ClangParsing/ASTFrontendAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/Include/ClangParsing/ASTFrontendAction.cpp -------------------------------------------------------------------------------- /Include/ClangParsing/ASTFrontendAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/Include/ClangParsing/ASTFrontendAction.h -------------------------------------------------------------------------------- /Include/ClangParsing/ASTVisitorGlobal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/Include/ClangParsing/ASTVisitorGlobal.cpp -------------------------------------------------------------------------------- /Include/ClangParsing/ASTVisitorGlobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/Include/ClangParsing/ASTVisitorGlobal.h -------------------------------------------------------------------------------- /Include/ClangParsing/ASTVisitorLocal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/Include/ClangParsing/ASTVisitorLocal.cpp -------------------------------------------------------------------------------- /Include/ClangParsing/ASTVisitorLocal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/Include/ClangParsing/ASTVisitorLocal.h -------------------------------------------------------------------------------- /Include/ClangParsing/CommandLineOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/Include/ClangParsing/CommandLineOptions.cpp -------------------------------------------------------------------------------- /Include/ClangParsing/CommandLineOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/Include/ClangParsing/CommandLineOptions.h -------------------------------------------------------------------------------- /Include/ClangParsing/GlobalDecls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/Include/ClangParsing/GlobalDecls.cpp -------------------------------------------------------------------------------- /Include/ClangParsing/GlobalDecls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/Include/ClangParsing/GlobalDecls.h -------------------------------------------------------------------------------- /Include/ClangParsing/Helpers/FunctionData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/Include/ClangParsing/Helpers/FunctionData.cpp -------------------------------------------------------------------------------- /Include/ClangParsing/Helpers/FunctionData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/Include/ClangParsing/Helpers/FunctionData.h -------------------------------------------------------------------------------- /Include/ClangParsing/Helpers/Script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/Include/ClangParsing/Helpers/Script.cpp -------------------------------------------------------------------------------- /Include/ClangParsing/Helpers/Script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/Include/ClangParsing/Helpers/Script.h -------------------------------------------------------------------------------- /Include/ClangParsing/Helpers/StaticData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/Include/ClangParsing/Helpers/StaticData.cpp -------------------------------------------------------------------------------- /Include/ClangParsing/Helpers/StaticData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/Include/ClangParsing/Helpers/StaticData.h -------------------------------------------------------------------------------- /Include/Compiler/BuildTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/Include/Compiler/BuildTarget.h -------------------------------------------------------------------------------- /Include/Compiler/Compiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/Include/Compiler/Compiler.cpp -------------------------------------------------------------------------------- /Include/Compiler/Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/Include/Compiler/Compiler.h -------------------------------------------------------------------------------- /Include/Compiler/Opcode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/Include/Compiler/Opcode.cpp -------------------------------------------------------------------------------- /Include/Compiler/Opcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/Include/Compiler/Opcode.h -------------------------------------------------------------------------------- /Include/Compiler/OpcodeConsts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/Include/Compiler/OpcodeConsts.h -------------------------------------------------------------------------------- /Include/Compression/SourceAnnotations.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/Include/Compression/SourceAnnotations.H -------------------------------------------------------------------------------- /Include/Compression/sal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/Include/Compression/sal.h -------------------------------------------------------------------------------- /Include/Compression/xcompress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/Include/Compression/xcompress.h -------------------------------------------------------------------------------- /Include/Compression/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/Include/Compression/zconf.h -------------------------------------------------------------------------------- /Include/Compression/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/Include/Compression/zlib.h -------------------------------------------------------------------------------- /Include/Crypto/aes256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/Include/Crypto/aes256.c -------------------------------------------------------------------------------- /Include/Crypto/aes256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/Include/Crypto/aes256.h -------------------------------------------------------------------------------- /Include/Utils/ClangUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/Include/Utils/ClangUtils.cpp -------------------------------------------------------------------------------- /Include/Utils/ClangUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/Include/Utils/ClangUtils.h -------------------------------------------------------------------------------- /Include/Utils/ConsoleColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/Include/Utils/ConsoleColor.h -------------------------------------------------------------------------------- /Include/Utils/ConstExpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/Include/Utils/ConstExpr.h -------------------------------------------------------------------------------- /Include/Utils/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/Include/Utils/Utils.cpp -------------------------------------------------------------------------------- /Include/Utils/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/Include/Utils/Utils.h -------------------------------------------------------------------------------- /Include/Utils/rapidxml/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/Include/Utils/rapidxml/license.txt -------------------------------------------------------------------------------- /Include/Utils/rapidxml/rapidxml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/Include/Utils/rapidxml/rapidxml.hpp -------------------------------------------------------------------------------- /Include/Utils/rapidxml/rapidxml_iterators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/Include/Utils/rapidxml/rapidxml_iterators.hpp -------------------------------------------------------------------------------- /Include/Utils/rapidxml/rapidxml_print.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/Include/Utils/rapidxml/rapidxml_print.hpp -------------------------------------------------------------------------------- /Include/Utils/rapidxml/rapidxml_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/Include/Utils/rapidxml/rapidxml_utils.hpp -------------------------------------------------------------------------------- /Include/Version/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/Include/Version/Version.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/README.md -------------------------------------------------------------------------------- /SC-CL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/SC-CL.cpp -------------------------------------------------------------------------------- /bin/Debug/show_help.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | SC-CL.exe -help 3 | pause > nul 4 | cls -------------------------------------------------------------------------------- /bin/Release/PC_Natives.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/bin/Release/PC_Natives.bin -------------------------------------------------------------------------------- /bin/Release/xcompress32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/bin/Release/xcompress32.dll -------------------------------------------------------------------------------- /bin/Release/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/bin/Release/zlib1.dll -------------------------------------------------------------------------------- /bin/include/GTAIV/consts32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/bin/include/GTAIV/consts32.h -------------------------------------------------------------------------------- /bin/include/GTAIV/natives32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/bin/include/GTAIV/natives32.h -------------------------------------------------------------------------------- /bin/include/GTAIV/natives32Old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/bin/include/GTAIV/natives32Old.h -------------------------------------------------------------------------------- /bin/include/GTAV/consts32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/bin/include/GTAV/consts32.h -------------------------------------------------------------------------------- /bin/include/GTAV/consts64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/bin/include/GTAV/consts64.h -------------------------------------------------------------------------------- /bin/include/GTAV/constsShared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/bin/include/GTAV/constsShared.h -------------------------------------------------------------------------------- /bin/include/GTAV/natives32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/bin/include/GTAV/natives32.h -------------------------------------------------------------------------------- /bin/include/GTAV/natives64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/bin/include/GTAV/natives64.h -------------------------------------------------------------------------------- /bin/include/RDR/consts32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/bin/include/RDR/consts32.h -------------------------------------------------------------------------------- /bin/include/RDR/natives32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/bin/include/RDR/natives32.h -------------------------------------------------------------------------------- /bin/include/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/bin/include/common.c -------------------------------------------------------------------------------- /bin/include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/bin/include/common.h -------------------------------------------------------------------------------- /bin/include/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/bin/include/constants.h -------------------------------------------------------------------------------- /bin/include/intrinsics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/bin/include/intrinsics.h -------------------------------------------------------------------------------- /bin/include/natives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/bin/include/natives.h -------------------------------------------------------------------------------- /bin/include/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/bin/include/types.h -------------------------------------------------------------------------------- /bin/include/varargs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/bin/include/varargs.h -------------------------------------------------------------------------------- /bin/projects/MenuBase/Include/Menu Internals/ItemExecution.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/bin/projects/MenuBase/Include/Menu Internals/ItemExecution.c -------------------------------------------------------------------------------- /bin/projects/MenuBase/Include/Menu Internals/ItemExecution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/bin/projects/MenuBase/Include/Menu Internals/ItemExecution.h -------------------------------------------------------------------------------- /bin/projects/MenuBase/Include/Menu Internals/MenuExecutionHandling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/bin/projects/MenuBase/Include/Menu Internals/MenuExecutionHandling.c -------------------------------------------------------------------------------- /bin/projects/MenuBase/Include/Menu Internals/MenuExecutionHandling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/bin/projects/MenuBase/Include/Menu Internals/MenuExecutionHandling.h -------------------------------------------------------------------------------- /bin/projects/MenuBase/Include/Menu Internals/MenuUiHandling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/bin/projects/MenuBase/Include/Menu Internals/MenuUiHandling.c -------------------------------------------------------------------------------- /bin/projects/MenuBase/Include/Menu Internals/MenuUiHandling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/bin/projects/MenuBase/Include/Menu Internals/MenuUiHandling.h -------------------------------------------------------------------------------- /bin/projects/MenuBase/Include/Utilities/Memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/bin/projects/MenuBase/Include/Utilities/Memory.c -------------------------------------------------------------------------------- /bin/projects/MenuBase/Include/Utilities/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/bin/projects/MenuBase/Include/Utilities/Memory.h -------------------------------------------------------------------------------- /bin/projects/MenuBase/Include/Utilities/Utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/bin/projects/MenuBase/Include/Utilities/Utils.c -------------------------------------------------------------------------------- /bin/projects/MenuBase/Include/Utilities/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/bin/projects/MenuBase/Include/Utilities/Utils.h -------------------------------------------------------------------------------- /bin/projects/MenuBase/MenuBase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/bin/projects/MenuBase/MenuBase.c -------------------------------------------------------------------------------- /bin/projects/MenuBase/MenuBase.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/bin/projects/MenuBase/MenuBase.sln -------------------------------------------------------------------------------- /bin/projects/MenuBase/MenuBase.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/bin/projects/MenuBase/MenuBase.vcxproj -------------------------------------------------------------------------------- /bin/projects/MenuBase/MenuBase.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/bin/projects/MenuBase/MenuBase.vcxproj.filters -------------------------------------------------------------------------------- /bin/projects/MenuBase/MenuBase.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/bin/projects/MenuBase/MenuBase.vcxproj.user -------------------------------------------------------------------------------- /bin/projects/printfTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/bin/projects/printfTest.c -------------------------------------------------------------------------------- /bin/projects/testing/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/bin/projects/testing/compile.bat -------------------------------------------------------------------------------- /bin/projects/testing/funcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/bin/projects/testing/funcs.c -------------------------------------------------------------------------------- /bin/projects/testing/inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/bin/projects/testing/inc.c -------------------------------------------------------------------------------- /bin/projects/testing/inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/bin/projects/testing/inc.h -------------------------------------------------------------------------------- /bin/projects/testing/rdr2_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/bin/projects/testing/rdr2_test.c -------------------------------------------------------------------------------- /bin/projects/testing/test.VC.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/bin/projects/testing/test.VC.db -------------------------------------------------------------------------------- /bin/projects/testing/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/bin/projects/testing/test.c -------------------------------------------------------------------------------- /bin/projects/testing/test.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/bin/projects/testing/test.sln -------------------------------------------------------------------------------- /bin/projects/testing/test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/bin/projects/testing/test.vcxproj -------------------------------------------------------------------------------- /bin/projects/testing/test.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/bin/projects/testing/test.vcxproj.filters -------------------------------------------------------------------------------- /bin/projects/testing/test.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/bin/projects/testing/test.vcxproj.user -------------------------------------------------------------------------------- /contributors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/contributors.txt -------------------------------------------------------------------------------- /lib/xcompress64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/lib/xcompress64.lib -------------------------------------------------------------------------------- /lib/zlibstatic.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeFunction/SC-CL/HEAD/lib/zlibstatic.lib --------------------------------------------------------------------------------