00001 /* 00002 * PROPRIETARY INFORMATION. This software is proprietary to 00003 * Side Effects Software Inc., and is not to be reproduced, 00004 * transmitted, or disclosed in any way without written permission. 00005 * 00006 * Produced by: 00007 * Side Effects 00008 * 477 Richmond Street West 00009 * Toronto, Ontario 00010 * Canada M5V 3E7 00011 * 416-504-9876 00012 */ 00013 00014 #ifndef __UT_CRC_H__ 00015 #define __UT_CRC_H__ 00016 00017 #include "UT_API.h" 00018 00019 class UT_API UT_CRC 00020 { 00021 public: 00022 UT_CRC (void); 00023 ~UT_CRC (void); 00024 00025 unsigned long updateCRC (unsigned long accum, char *ptr, int size); 00026 }; 00027 00028 #endif
1.5.9