home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / slfinsta.zip / include / uac_crc.h < prev    next >
C/C++ Source or Header  |  2000-03-26  |  358b  |  23 lines

  1. /* $Id: uac_crc.h,v 1.1 2000/03/27 04:53:07 ktk Exp $ */
  2.  
  3. #ifndef __uac_crc_h
  4. #define __uac_crc_h
  5.  
  6.  
  7. #include "declare.h"
  8.  
  9. #define CRC_MASK 0xFFFFFFFFL
  10. #define CRCPOLY  0xEDB88320L
  11.  
  12.  
  13. extern ULONG crctable[256];
  14. extern ULONG rd_crc;
  15.  
  16.  
  17. ULONG getcrc(ULONG crc, UCHAR * addr, INT len);
  18. void  make_crctable(void);
  19.  
  20.  
  21. #endif /* __uac_crc_h */
  22.  
  23.