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.

39 lines
434 B

  1. /*++
  2. Copyright (c) 1998-1999, Microsoft Corporation
  3. Module Name:
  4. Crc32.h
  5. Abstract:
  6. --*/
  7. #ifndef CRC32_H
  8. #define CRC32_H
  9. #include <windows.h>
  10. #include <string.h> // needed by compobj.h
  11. #if defined(WIN32) || defined(_WIN32)
  12. #include <crtdbg.h>
  13. #else
  14. typedef short INT;
  15. #include <assert.h>
  16. #define _ASSERT assert
  17. #include <compobj.h> // needed for 16-bit build
  18. #endif
  19. #include "tchar.h"
  20. #include "CCrc32.h"
  21. #endif