├── .clang-format ├── .github └── workflows │ └── build.yml ├── .gitignore ├── .vscode ├── settings.json └── tasks.json ├── LICENSE ├── Memcury.sln ├── Memcury.vcxproj ├── Memcury.vcxproj.filters ├── README.md ├── example.cpp ├── framework.h └── memcury.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kem0x/Memcury/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kem0x/Memcury/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kem0x/Memcury/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kem0x/Memcury/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kem0x/Memcury/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kem0x/Memcury/HEAD/LICENSE -------------------------------------------------------------------------------- /Memcury.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kem0x/Memcury/HEAD/Memcury.sln -------------------------------------------------------------------------------- /Memcury.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kem0x/Memcury/HEAD/Memcury.vcxproj -------------------------------------------------------------------------------- /Memcury.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kem0x/Memcury/HEAD/Memcury.vcxproj.filters -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kem0x/Memcury/HEAD/README.md -------------------------------------------------------------------------------- /example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kem0x/Memcury/HEAD/example.cpp -------------------------------------------------------------------------------- /framework.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #define WIN32_LEAN_AND_MEAN 4 | #include 5 | -------------------------------------------------------------------------------- /memcury.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kem0x/Memcury/HEAD/memcury.h --------------------------------------------------------------------------------