home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 March / CMCD0304.ISO / Software / Freeware / Programare / nullsoft / nsis20.exe / Source / 7zip / lzmaNSIS.h < prev    next >
C/C++ Source or Header  |  2003-11-23  |  306b  |  21 lines

  1. // lzmaNSIS.h
  2.  
  3. #include "7zip/Compress/LZMA_SMALL/LZMAState.h"
  4.  
  5. #ifndef __LZMANSIS_H
  6. #define __LZMANSIS_H
  7.  
  8. #ifdef __cplusplus
  9. extern "C" {
  10. #endif
  11.  
  12. void __stdcall lzmaInit(CLZMAStateP lzmaState);
  13. int __stdcall lzmaDecompress(CLZMAStateP lzmaState);
  14.  
  15. #ifdef __cplusplus
  16. }
  17. #endif
  18.  
  19.  
  20. #endif
  21.