]> git.saurik.com Git - wxWidgets.git/blob - utils/Install/incace/uac_crc.h
another attempt to fix wxPanel/wxFrame::m_winLastFocused handling
[wxWidgets.git] / utils / Install / incace / uac_crc.h
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
11 extern ULONG crctable[256];
12 extern ULONG rd_crc;
13
14
15 ULONG getcrc(ULONG crc, UCHAR * addr, INT len);
16 void make_crctable(void);
17
18
19 #endif /* __uac_crc_h */
20