├── .gitattributes ├── .gitignore ├── C++ XenForo Loader.sln ├── C++ XenForo Loader.vcxproj ├── C++ XenForo Loader.vcxproj.filters ├── README.md ├── configmanager ├── configmanager.cpp └── configmanager.hpp ├── main.cpp ├── rapidjson ├── allocators.h ├── document.h ├── encodedstream.h ├── encodings.h ├── error │ ├── en.h │ └── error.h ├── filereadstream.h ├── filewritestream.h ├── fwd.h ├── internal │ ├── biginteger.h │ ├── diyfp.h │ ├── dtoa.h │ ├── ieee754.h │ ├── itoa.h │ ├── meta.h │ ├── pow10.h │ ├── regex.h │ ├── stack.h │ ├── strfunc.h │ ├── strtod.h │ └── swap.h ├── istreamwrapper.h ├── memorybuffer.h ├── memorystream.h ├── msinttypes │ ├── inttypes.h │ └── stdint.h ├── ostreamwrapper.h ├── pointer.h ├── prettywriter.h ├── rapidjson.h ├── reader.h ├── schema.h ├── stream.h ├── stringbuffer.h └── writer.h ├── request └── request.hpp ├── utils ├── utils.cpp └── utils.hpp └── webfiles └── hwid.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandaalv/CPP-XenForo-Loader/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandaalv/CPP-XenForo-Loader/HEAD/.gitignore -------------------------------------------------------------------------------- /C++ XenForo Loader.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandaalv/CPP-XenForo-Loader/HEAD/C++ XenForo Loader.sln -------------------------------------------------------------------------------- /C++ XenForo Loader.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandaalv/CPP-XenForo-Loader/HEAD/C++ XenForo Loader.vcxproj -------------------------------------------------------------------------------- /C++ XenForo Loader.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandaalv/CPP-XenForo-Loader/HEAD/C++ XenForo Loader.vcxproj.filters -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandaalv/CPP-XenForo-Loader/HEAD/README.md -------------------------------------------------------------------------------- /configmanager/configmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandaalv/CPP-XenForo-Loader/HEAD/configmanager/configmanager.cpp -------------------------------------------------------------------------------- /configmanager/configmanager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandaalv/CPP-XenForo-Loader/HEAD/configmanager/configmanager.hpp -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandaalv/CPP-XenForo-Loader/HEAD/main.cpp -------------------------------------------------------------------------------- /rapidjson/allocators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandaalv/CPP-XenForo-Loader/HEAD/rapidjson/allocators.h -------------------------------------------------------------------------------- /rapidjson/document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandaalv/CPP-XenForo-Loader/HEAD/rapidjson/document.h -------------------------------------------------------------------------------- /rapidjson/encodedstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandaalv/CPP-XenForo-Loader/HEAD/rapidjson/encodedstream.h -------------------------------------------------------------------------------- /rapidjson/encodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandaalv/CPP-XenForo-Loader/HEAD/rapidjson/encodings.h -------------------------------------------------------------------------------- /rapidjson/error/en.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandaalv/CPP-XenForo-Loader/HEAD/rapidjson/error/en.h -------------------------------------------------------------------------------- /rapidjson/error/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandaalv/CPP-XenForo-Loader/HEAD/rapidjson/error/error.h -------------------------------------------------------------------------------- /rapidjson/filereadstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandaalv/CPP-XenForo-Loader/HEAD/rapidjson/filereadstream.h -------------------------------------------------------------------------------- /rapidjson/filewritestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandaalv/CPP-XenForo-Loader/HEAD/rapidjson/filewritestream.h -------------------------------------------------------------------------------- /rapidjson/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandaalv/CPP-XenForo-Loader/HEAD/rapidjson/fwd.h -------------------------------------------------------------------------------- /rapidjson/internal/biginteger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandaalv/CPP-XenForo-Loader/HEAD/rapidjson/internal/biginteger.h -------------------------------------------------------------------------------- /rapidjson/internal/diyfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandaalv/CPP-XenForo-Loader/HEAD/rapidjson/internal/diyfp.h -------------------------------------------------------------------------------- /rapidjson/internal/dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandaalv/CPP-XenForo-Loader/HEAD/rapidjson/internal/dtoa.h -------------------------------------------------------------------------------- /rapidjson/internal/ieee754.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandaalv/CPP-XenForo-Loader/HEAD/rapidjson/internal/ieee754.h -------------------------------------------------------------------------------- /rapidjson/internal/itoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandaalv/CPP-XenForo-Loader/HEAD/rapidjson/internal/itoa.h -------------------------------------------------------------------------------- /rapidjson/internal/meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandaalv/CPP-XenForo-Loader/HEAD/rapidjson/internal/meta.h -------------------------------------------------------------------------------- /rapidjson/internal/pow10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandaalv/CPP-XenForo-Loader/HEAD/rapidjson/internal/pow10.h -------------------------------------------------------------------------------- /rapidjson/internal/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandaalv/CPP-XenForo-Loader/HEAD/rapidjson/internal/regex.h -------------------------------------------------------------------------------- /rapidjson/internal/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandaalv/CPP-XenForo-Loader/HEAD/rapidjson/internal/stack.h -------------------------------------------------------------------------------- /rapidjson/internal/strfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandaalv/CPP-XenForo-Loader/HEAD/rapidjson/internal/strfunc.h -------------------------------------------------------------------------------- /rapidjson/internal/strtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandaalv/CPP-XenForo-Loader/HEAD/rapidjson/internal/strtod.h -------------------------------------------------------------------------------- /rapidjson/internal/swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandaalv/CPP-XenForo-Loader/HEAD/rapidjson/internal/swap.h -------------------------------------------------------------------------------- /rapidjson/istreamwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandaalv/CPP-XenForo-Loader/HEAD/rapidjson/istreamwrapper.h -------------------------------------------------------------------------------- /rapidjson/memorybuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandaalv/CPP-XenForo-Loader/HEAD/rapidjson/memorybuffer.h -------------------------------------------------------------------------------- /rapidjson/memorystream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandaalv/CPP-XenForo-Loader/HEAD/rapidjson/memorystream.h -------------------------------------------------------------------------------- /rapidjson/msinttypes/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandaalv/CPP-XenForo-Loader/HEAD/rapidjson/msinttypes/inttypes.h -------------------------------------------------------------------------------- /rapidjson/msinttypes/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandaalv/CPP-XenForo-Loader/HEAD/rapidjson/msinttypes/stdint.h -------------------------------------------------------------------------------- /rapidjson/ostreamwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandaalv/CPP-XenForo-Loader/HEAD/rapidjson/ostreamwrapper.h -------------------------------------------------------------------------------- /rapidjson/pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandaalv/CPP-XenForo-Loader/HEAD/rapidjson/pointer.h -------------------------------------------------------------------------------- /rapidjson/prettywriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandaalv/CPP-XenForo-Loader/HEAD/rapidjson/prettywriter.h -------------------------------------------------------------------------------- /rapidjson/rapidjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandaalv/CPP-XenForo-Loader/HEAD/rapidjson/rapidjson.h -------------------------------------------------------------------------------- /rapidjson/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandaalv/CPP-XenForo-Loader/HEAD/rapidjson/reader.h -------------------------------------------------------------------------------- /rapidjson/schema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandaalv/CPP-XenForo-Loader/HEAD/rapidjson/schema.h -------------------------------------------------------------------------------- /rapidjson/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandaalv/CPP-XenForo-Loader/HEAD/rapidjson/stream.h -------------------------------------------------------------------------------- /rapidjson/stringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandaalv/CPP-XenForo-Loader/HEAD/rapidjson/stringbuffer.h -------------------------------------------------------------------------------- /rapidjson/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandaalv/CPP-XenForo-Loader/HEAD/rapidjson/writer.h -------------------------------------------------------------------------------- /request/request.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandaalv/CPP-XenForo-Loader/HEAD/request/request.hpp -------------------------------------------------------------------------------- /utils/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandaalv/CPP-XenForo-Loader/HEAD/utils/utils.cpp -------------------------------------------------------------------------------- /utils/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandaalv/CPP-XenForo-Loader/HEAD/utils/utils.hpp -------------------------------------------------------------------------------- /webfiles/hwid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandaalv/CPP-XenForo-Loader/HEAD/webfiles/hwid.php --------------------------------------------------------------------------------