Windows2000/private/security/msv_sspi/crc32.h
2020-09-30 17:12:32 +02:00

28 lines
452 B
C

/*++
Copyright (c) 1994 Microsoft Corporation
Module Name:
crc32.h
Abstract:
CRC-32 alogorithm prototypes and constants
Author:
MikeSw
Revision History:
ChandanS 25-Jul-96 Stolen from net\svcdlls\ntlmssp\client\crc32.h
*/
// Function prototypes for CRC-32
#ifdef __cplusplus
extern "C"
{
#endif
void Crc32( unsigned long crc, unsigned long cbBuffer, void * pvBuffer, unsigned long * pNewCrc);
#ifdef __cplusplus
}
#endif