mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2026-02-05 01:29:07 +00:00
* feat(app): add StormLib * feat(app): add OpenArchives * feat(util): update SFile to work with StormLib * feat(app): update SFile * feat(util): update SFile with logging (Windows only) * feat(ui): implemented termination w/o notice * chore(build): update StormLib * chore(util): replace std::string with SStr* functions * fix(stormlib): dwFlags argument for SFileOpenPatchArchive * chore(ui): add Script_* stubs * chore(util): clean up SFile::OpenEx * chore(build): update StormLib --------- Co-authored-by: Phaneron <superp00t@tutanota.com>
13 lines
577 B
C
13 lines
577 B
C
// This is a source file for WDK build of StormLib
|
|
// It is copied to the root folder during the build process
|
|
|
|
#pragma warning(disable: 4242) // '=' : conversion from 'Int32' to 'UChar', possible loss of data
|
|
#pragma warning(disable: 4244) // '=' : conversion from '__int64' to 'Int32', possible loss of data
|
|
|
|
#include "src\bzip2\blocksort.c"
|
|
#include "src\bzip2\bzlib.c"
|
|
#include "src\bzip2\compress.c"
|
|
#include "src\bzip2\crctable.c"
|
|
#include "src\bzip2\decompress.c"
|
|
#include "src\bzip2\huffman.c"
|
|
#include "src\bzip2\randtable.c"
|