Panda3D
download_utils.h
1 // Filename: download_utils.h
2 // Created by: mike (18Jan99)
3 //
4 ////////////////////////////////////////////////////////////////////
5 //
6 // PANDA 3D SOFTWARE
7 // Copyright (c) Carnegie Mellon University. All rights reserved.
8 //
9 // All use of this software is subject to the terms of the revised BSD
10 // license. You should have received a copy of this license along
11 // with this source code in a file named "LICENSE."
12 //
13 ////////////////////////////////////////////////////////////////////
14 
15 #ifndef DOWNLOAD_UTILS_H
16 #define DOWNLOAD_UTILS_H
17 
18 #include "pandabase.h"
19 #include "filename.h"
20 
21 #ifdef HAVE_ZLIB
22 
23 BEGIN_PUBLISH
24 
25 EXPCL_PANDAEXPRESS unsigned long check_crc(Filename name);
26 EXPCL_PANDAEXPRESS unsigned long check_adler(Filename name);
27 
28 END_PUBLISH
29 
30 #endif // HAVE_ZLIB
31 
32 #endif
33 
The name of a file, such as a texture file or an Egg file.
Definition: filename.h:44