Back to home page

EIC code displayed by LXR

 
 

    


Warning, file /include/root/ZipLZMA.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 // @(#)root/lzma:$Id$
0002 // Author: David Dagenhart   May 2011
0003 
0004 /*************************************************************************
0005  * Copyright (C) 1995-2011, Rene Brun and Fons Rademakers.               *
0006  * All rights reserved.                                                  *
0007  *                                                                       *
0008  * For the licensing terms see $ROOTSYS/LICENSE.                         *
0009  * For the list of contributors see $ROOTSYS/README/CREDITS.             *
0010  *************************************************************************/
0011 
0012 #ifndef ROOT_ZipLZMA
0013 #define ROOT_ZipLZMA
0014 
0015 #ifdef __cplusplus
0016 extern "C" {
0017 #endif
0018 
0019 void R__zipLZMA(int cxlevel, int *srcsize, char *src, int *tgtsize, char *tgt, int *irep);
0020 
0021 void R__unzipLZMA(int *srcsize, unsigned char *src, int *tgtsize, unsigned char *tgt, int *irep);
0022 
0023 #ifdef __cplusplus
0024 }
0025 #endif
0026 
0027 #endif