]> git.saurik.com Git - wxWidgets.git/blame - utils/Install/incace/uac_crc.h
SWIGged updates for wxMac
[wxWidgets.git] / utils / Install / incace / uac_crc.h
CommitLineData
f6bcfd97
BP
1#ifndef __uac_crc_h
2#define __uac_crc_h
3
4
5#include "declare.h"
6
7#define CRC_MASK 0xFFFFFFFFL
8#define CRCPOLY 0xEDB88320L
9
10
11extern ULONG crctable[256];
12extern ULONG rd_crc;
13
14
15ULONG getcrc(ULONG crc, UCHAR * addr, INT len);
16void make_crctable(void);
17
18
19#endif /* __uac_crc_h */
20