Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
619 B

  1. /*++
  2. Copyright (c) 1994 Microsoft Corporation
  3. Module Name:
  4. crc32.h
  5. Abstract:
  6. CRC-32 alogorithm prototypes and constants
  7. Author:
  8. MikeSw
  9. Revision History:
  10. ChandanS 25-Jul-96 Stolen from net\svcdlls\ntlmssp\client\crc32.h
  11. --*/
  12. //////////////////////////////////////////////////////////////
  13. //
  14. // Function prototypes for CRC-32
  15. //
  16. //////////////////////////////////////////////////////////////
  17. #ifdef __cplusplus
  18. extern "C"
  19. {
  20. #endif
  21. void
  22. Crc32( unsigned long crc,
  23. unsigned long cbBuffer,
  24. void * pvBuffer,
  25. unsigned long * pNewCrc);
  26. #ifdef __cplusplus
  27. }
  28. #endif