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.

23 lines
584 B

  1. /******************************************************************************
  2. Copyright (c) 1999 Microsoft Corporation
  3. Module Name:
  4. pfcrc.h
  5. Abstract:
  6. This file contains the implementation of some utility functions for
  7. computing CRCs. table & algo stolen from MPC_Common...
  8. Revision History:
  9. derekm created 04/25/00
  10. ******************************************************************************/
  11. #ifndef PFCRC_H
  12. #define PFCRC_H
  13. DWORD ComputeCRC32(UCHAR *pb, DWORD cb);
  14. DWORD ComputeCRC32(HANDLE hFile);
  15. DWORD ComputeCRC32File(LPWSTR wszFile);
  16. #endif