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.
32 lines
327 B
32 lines
327 B
/*++
|
|
|
|
Copyright (c) 1990-2000 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
crc.hxx
|
|
|
|
Author:
|
|
|
|
Centis Biks (cbiks) 12-Jun-2000
|
|
|
|
Environment:
|
|
|
|
ULIB, User Mode
|
|
|
|
--*/
|
|
|
|
#pragma once
|
|
|
|
USHORT
|
|
CalculateCrc
|
|
(
|
|
LPBYTE p,
|
|
ULONGLONG size
|
|
);
|
|
|
|
UCHAR
|
|
CalculateTagChecksum
|
|
(
|
|
DESTAG* gt
|
|
);
|