// CRC32 by Immortalware JTHZ
//
// Copyright (C) 1986 Gary S. Brown.  You may use this program, or
// code or tables extracted from it, as desired without restriction.

#ifndef __CRC32_H
#define __CRC32_H
#include <windows.h>

DWORD crc32(LPCTSTR buffer,DWORD bufferSize);
// returns crc32 of buffer

#endif

