2
Fork 0
No description
This repository has been archived on 2022-11-09. You can view files and clone it, but cannot push or open issues or pull requests.
Find a file
Lucas Schwiderski 2bc7751d3b
feat: Implement brute-forcing the raw size
Oodle must know the size of the uncompressed data when decompressing
data. If you don't know that size, the only option is to guess.
And since it needs to be the exact number, you simply have to try
every number.
2022-10-20 17:47:42 +02:00
.gitignore feat: Implement oodle-cli 2022-10-18 19:02:35 +02:00
LICENSE feat: Implement oodle-cli 2022-10-18 19:02:35 +02:00
oodle-cli.cpp feat: Implement brute-forcing the raw size 2022-10-20 17:47:42 +02:00
oodle-cli.sln feat: Implement oodle-cli 2022-10-18 19:02:35 +02:00
oodle-cli.vcxproj feat: Allow providing custom DLL search path 2022-10-19 18:44:02 +02:00
oodle-cli.vcxproj.filters feat: Allow providing custom DLL search path 2022-10-19 18:44:02 +02:00
oodle-cli.vcxproj.user feat: Implement oodle-cli 2022-10-18 19:02:35 +02:00
oodle2.h feat: Implement Oodle logging 2022-10-20 17:45:45 +02:00
README.adoc feat: Implement oodle-cli 2022-10-18 19:02:35 +02:00

oodle-cli

A small wrapper around the Oodle library to allow decompressing data through a command line interface. The goal is to make Oodle decompression easily available in a Unix environment, through Wine, where linking against the Windows-only .dll is not an option.

Building

So far, this has only been built on Windows. But doing so only requires a recent version of Visual Studio. Load the Solution and hit Build.