Subversion Repositories spk

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
4 cycrow 1
/*****************************************************************************
2
 
3
  CRC32
4
  -----
5
 
6
  Cyclic Redundancy Code generation class
7
 
8
  by yoda
9
 
10
  WWW:      y0da.cjb.net
11
  E-mail:   LordPE@gmx.net
12
 
13
  You are allowed to use this class in your own projects if you keep this
14
  trademark.
15
 
16
*****************************************************************************/
17
 
18
#pragma once
19
 
20
#include <windows.h>
21
 
22
//
23
// CRC32 class
24
//
25
class CRC32
26
{
27
public:
28
	static DWORD Generate( PBYTE pby, DWORD cb );
29
};