windows-nt/Source/XPSP1/NT/admin/pchealth/client/include/pfcrc.h
2020-09-26 16:20:57 +08:00

24 lines
584 B
C

/******************************************************************************
Copyright (c) 1999 Microsoft Corporation
Module Name:
pfcrc.h
Abstract:
This file contains the implementation of some utility functions for
computing CRCs. table & algo stolen from MPC_Common...
Revision History:
derekm created 04/25/00
******************************************************************************/
#ifndef PFCRC_H
#define PFCRC_H
DWORD ComputeCRC32(UCHAR *pb, DWORD cb);
DWORD ComputeCRC32(HANDLE hFile);
DWORD ComputeCRC32File(LPWSTR wszFile);
#endif