├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── ruri.sln └── ruri ├── Achievement.h ├── Aria.h ├── BCrypt ├── BCrypt.hpp ├── bcrypt.c ├── bcrypt.h ├── crypt.h ├── crypt_blowfish.c ├── crypt_blowfish.h ├── crypt_gensalt.c ├── crypt_gensalt.h ├── ow-crypt.h ├── winbcrypt.h └── wrapper.c ├── Base64.h ├── Channel.h ├── Commands.h ├── Connection.h ├── HTML.h ├── Json.h ├── LZ4 └── lz4.h ├── Linux.h ├── Match.h ├── Register.h ├── SQL.h ├── Source.cpp ├── User.h ├── Web.h ├── aes.cpp ├── aes.h ├── config.json ├── cpp.hint ├── lz4.c ├── oppai.h ├── pp ├── Beatmap.h ├── osuRandom.h ├── pp_ctb.h ├── pp_mania.h ├── pp_osu.h └── pp_taiko.h ├── ruri.vcxproj ├── ruri.vcxproj.filters └── ruri_API.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumoi/ruri/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumoi/ruri/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumoi/ruri/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumoi/ruri/HEAD/README.md -------------------------------------------------------------------------------- /ruri.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumoi/ruri/HEAD/ruri.sln -------------------------------------------------------------------------------- /ruri/Achievement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumoi/ruri/HEAD/ruri/Achievement.h -------------------------------------------------------------------------------- /ruri/Aria.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumoi/ruri/HEAD/ruri/Aria.h -------------------------------------------------------------------------------- /ruri/BCrypt/BCrypt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumoi/ruri/HEAD/ruri/BCrypt/BCrypt.hpp -------------------------------------------------------------------------------- /ruri/BCrypt/bcrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumoi/ruri/HEAD/ruri/BCrypt/bcrypt.c -------------------------------------------------------------------------------- /ruri/BCrypt/bcrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumoi/ruri/HEAD/ruri/BCrypt/bcrypt.h -------------------------------------------------------------------------------- /ruri/BCrypt/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumoi/ruri/HEAD/ruri/BCrypt/crypt.h -------------------------------------------------------------------------------- /ruri/BCrypt/crypt_blowfish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumoi/ruri/HEAD/ruri/BCrypt/crypt_blowfish.c -------------------------------------------------------------------------------- /ruri/BCrypt/crypt_blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumoi/ruri/HEAD/ruri/BCrypt/crypt_blowfish.h -------------------------------------------------------------------------------- /ruri/BCrypt/crypt_gensalt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumoi/ruri/HEAD/ruri/BCrypt/crypt_gensalt.c -------------------------------------------------------------------------------- /ruri/BCrypt/crypt_gensalt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumoi/ruri/HEAD/ruri/BCrypt/crypt_gensalt.h -------------------------------------------------------------------------------- /ruri/BCrypt/ow-crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumoi/ruri/HEAD/ruri/BCrypt/ow-crypt.h -------------------------------------------------------------------------------- /ruri/BCrypt/winbcrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumoi/ruri/HEAD/ruri/BCrypt/winbcrypt.h -------------------------------------------------------------------------------- /ruri/BCrypt/wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumoi/ruri/HEAD/ruri/BCrypt/wrapper.c -------------------------------------------------------------------------------- /ruri/Base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumoi/ruri/HEAD/ruri/Base64.h -------------------------------------------------------------------------------- /ruri/Channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumoi/ruri/HEAD/ruri/Channel.h -------------------------------------------------------------------------------- /ruri/Commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumoi/ruri/HEAD/ruri/Commands.h -------------------------------------------------------------------------------- /ruri/Connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumoi/ruri/HEAD/ruri/Connection.h -------------------------------------------------------------------------------- /ruri/HTML.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace html5{ 4 | 5 | 6 | } 7 | -------------------------------------------------------------------------------- /ruri/Json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumoi/ruri/HEAD/ruri/Json.h -------------------------------------------------------------------------------- /ruri/LZ4/lz4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumoi/ruri/HEAD/ruri/LZ4/lz4.h -------------------------------------------------------------------------------- /ruri/Linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumoi/ruri/HEAD/ruri/Linux.h -------------------------------------------------------------------------------- /ruri/Match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumoi/ruri/HEAD/ruri/Match.h -------------------------------------------------------------------------------- /ruri/Register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumoi/ruri/HEAD/ruri/Register.h -------------------------------------------------------------------------------- /ruri/SQL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumoi/ruri/HEAD/ruri/SQL.h -------------------------------------------------------------------------------- /ruri/Source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumoi/ruri/HEAD/ruri/Source.cpp -------------------------------------------------------------------------------- /ruri/User.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumoi/ruri/HEAD/ruri/User.h -------------------------------------------------------------------------------- /ruri/Web.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumoi/ruri/HEAD/ruri/Web.h -------------------------------------------------------------------------------- /ruri/aes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumoi/ruri/HEAD/ruri/aes.cpp -------------------------------------------------------------------------------- /ruri/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumoi/ruri/HEAD/ruri/aes.h -------------------------------------------------------------------------------- /ruri/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumoi/ruri/HEAD/ruri/config.json -------------------------------------------------------------------------------- /ruri/cpp.hint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumoi/ruri/HEAD/ruri/cpp.hint -------------------------------------------------------------------------------- /ruri/lz4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumoi/ruri/HEAD/ruri/lz4.c -------------------------------------------------------------------------------- /ruri/oppai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumoi/ruri/HEAD/ruri/oppai.h -------------------------------------------------------------------------------- /ruri/pp/Beatmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumoi/ruri/HEAD/ruri/pp/Beatmap.h -------------------------------------------------------------------------------- /ruri/pp/osuRandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumoi/ruri/HEAD/ruri/pp/osuRandom.h -------------------------------------------------------------------------------- /ruri/pp/pp_ctb.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /ruri/pp/pp_mania.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumoi/ruri/HEAD/ruri/pp/pp_mania.h -------------------------------------------------------------------------------- /ruri/pp/pp_osu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumoi/ruri/HEAD/ruri/pp/pp_osu.h -------------------------------------------------------------------------------- /ruri/pp/pp_taiko.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /ruri/ruri.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumoi/ruri/HEAD/ruri/ruri.vcxproj -------------------------------------------------------------------------------- /ruri/ruri.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumoi/ruri/HEAD/ruri/ruri.vcxproj.filters -------------------------------------------------------------------------------- /ruri/ruri_API.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumoi/ruri/HEAD/ruri/ruri_API.h --------------------------------------------------------------------------------