LhaLib.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:1k
源码类别:

模拟服务器

开发平台:

C/C++

  1. //---------------------------------------------------------------------------
  2. // Sword3 Engine (c) 1999-2000 by Kingsoft
  3. //
  4. // File: KLhaLib.h
  5. // Date: 2000.12.25
  6. // Code: Daniel Wang
  7. // Desc: Ver1.14 Source All chagned, 1995.01.14 N.Watazaki
  8. //---------------------------------------------------------------------------
  9. #ifndef KLhaLib_H
  10. #define KLhaLib_H
  11. //---------------------------------------------------------------------------
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif 
  15. //---------------------------------------------------------------------------
  16. void lha_encode(unsigned char* pIn, 
  17.    unsigned long nIn,
  18.    unsigned char* pOut,
  19.    unsigned long* pnOut);
  20. void lha_decode(unsigned char* pIn,
  21.    unsigned long nIn,
  22.    unsigned char* pOut,
  23.    unsigned long* pnOut);
  24. //---------------------------------------------------------------------------
  25. #ifdef __cplusplus
  26. }
  27. #endif 
  28. //---------------------------------------------------------------------------
  29. #endif