crc32.h
来自「安全支持提供器接口(SSPI)源码」· C头文件 代码 · 共 45 行
H
45 行
/*++
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 + =
减小字号Ctrl + -
显示快捷键?