Subversion Repositories spk

Rev

Rev 4 | Blame | Compare with Previous | Last modification | View Log | RSS feed

/*****************************************************************************

  CRC32
  -----

  Cyclic Redundancy Code generation class

  by yoda

  WWW:      y0da.cjb.net
  E-mail:   LordPE@gmx.net

  You are allowed to use this class in your own projects if you keep this
  trademark.

*****************************************************************************/

#pragma once

#include <windows.h>

//
// CRC32 class
//
class CRC32
{
public:
        static DWORD Generate( PBYTE pby, DWORD cb );
};