📄 crc32.h
字号:
/*++
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
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -