This commit is contained in:
Tino Reichardt
2016-06-26 10:10:52 +02:00
parent 5bce54c26e
commit 2542318d0e
4 changed files with 5 additions and 1173 deletions

View File

@@ -46,8 +46,12 @@ extern "C" {
***************************************/ ***************************************/
#include "zstd_static.h" /* ZSTD_parameters */ #include "zstd_static.h" /* ZSTD_parameters */
#include "zbuff.h" #include "zbuff.h"
#include "zstd_internal.h" /* MIN */
/*-*************************************
* Common macros
***************************************/
#define MIN(a,b) ((a)<(b) ? (a) : (b))
#define MAX(a,b) ((a)>(b) ? (a) : (b))
/* ************************************* /* *************************************
* Advanced Streaming functions * Advanced Streaming functions

View File

@@ -41,13 +41,6 @@
#include "zstd.h" #include "zstd.h"
/*-*************************************
* Common macros
***************************************/
#define MIN(a,b) ((a)<(b) ? (a) : (b))
#define MAX(a,b) ((a)>(b) ? (a) : (b))
/*-************************************* /*-*************************************
* Common constants * Common constants
***************************************/ ***************************************/

View File

@@ -13,7 +13,6 @@ copy O\7z.dll %ROOT%\bin32\7z.dll
cd %ROOT%\Bundles\Format7zZStd cd %ROOT%\Bundles\Format7zZStd
nmake %OPTS% nmake %OPTS%
copy O\7z.dll %ROOT%\bin32\7za.dll copy O\7z.dll %ROOT%\bin32\7za.dll
goto ende
cd %ROOT%\UI\FileManager cd %ROOT%\UI\FileManager
nmake %OPTS% nmake %OPTS%

View File

File diff suppressed because it is too large Load Diff