Leaked source code of windows server 2003
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.

37 lines
561 B

  1. /*++
  2. Copyright (c) 1994 Microsoft Corporation
  3. Module Name:
  4. crc32.g
  5. Abstract:
  6. CRC-32 alogorithm prototypes and constants
  7. Author:
  8. MikeSw
  9. Revision History:
  10. 31-Mar-94 MikeSw Created
  11. --*/
  12. //////////////////////////////////////////////////////////////
  13. //
  14. // Function prototypes for CRC-32
  15. //
  16. //////////////////////////////////////////////////////////////
  17. void
  18. Crc32( unsigned long crc,
  19. unsigned long cbBuffer,
  20. LPVOID pvBuffer,
  21. unsigned long SEC_FAR * pNewCrc);