wfut  0.2.4
A client side C++ implementation of WFUT (WorldForge Update Tool).
crc32.h
1 // This file may be redistributed and modified only under the terms of
2 // the GNU Lesser General Public License (See COPYING for details).
3 // Copyright (C) 2005 - 2007 Simon Goodall
4 
5 #include <zlib.h>
6 #include <string>
7 
8 namespace WFUT {
9 
10  int calcCRC32(const std::string &filename, uLong &crc);
11 
12 }