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.

13 lines
221 B

  1. #ifndef CRC32_H
  2. #define CRC32_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. extern unsigned long __cdecl CRC32Update(unsigned long crc32, unsigned char *data, unsigned length);
  7. #ifdef __cplusplus
  8. }
  9. #endif
  10. #endif // CRC32_H