00001 /* 00002 Copyright (C) 2005-2007 Feeling Software Inc. 00003 Portions of the code are: 00004 Copyright (C) 2005-2007 Sony Computer Entertainment America 00005 00006 MIT License: http://www.opensource.org/licenses/mit-license.php 00007 */ 00008 /* 00009 Based on the FS Import classes: 00010 Copyright (C) 2005-2006 Feeling Software Inc 00011 Copyright (C) 2005-2006 Autodesk Media Entertainment 00012 MIT License: http://www.opensource.org/licenses/mit-license.php 00013 */ 00014 00020 #ifndef _FU_CRC32_H_ 00021 #define _FU_CRC32_H_ 00022 00029 namespace FUCrc32 00030 { 00032 typedef uint32 crc32; 00033 00037 FCOLLADA_EXPORT crc32 CRC32(const char* text); 00038 #ifdef UNICODE 00039 FCOLLADA_EXPORT crc32 CRC32(const fchar* text); 00040 #endif // UNICODE 00041 }; 00042 00043 #endif // _FU_CRC32_H_ 00044