mirror of https://github.com/tongzx/nt5src
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.
24 lines
584 B
24 lines
584 B
/******************************************************************************
|
|
|
|
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
|