Subversion Repositories Kolibri OS

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1805 yogev_ezra 1
#if !defined(AFX_CRC32_H__1F375B73_5C72_4711_B464_7212EFC14AAE__INCLUDED_)
2
#define AFX_CRC32_H__1F375B73_5C72_4711_B464_7212EFC14AAE__INCLUDED_
3
 
4
class CCRC32
5
{
6
private:
7
        Dword table[256];
8
 
9
 
10
public:
11
        Dword GetCRC32( Byte *buffer, Dword length );
12
        void DoCRC32( Byte *buffer, Dword length, Dword *CRC32value );
13
        Dword FinalizeCRC32( Dword );
14
        Dword InitCRC32();
15
        CCRC32();
16
};
17
 
18
#endif // !defined(AFX_CRC32_H__1F375B73_5C72_4711_B464_7212EFC14AAE__INCLUDED_)