Code::Blocks  SVN r11506
crc32.h
Go to the documentation of this file.
1 /*
2  * This file is part of the Code::Blocks IDE and licensed under the GNU Lesser General Public License, version 3
3  * http://www.gnu.org/licenses/lgpl-3.0.html
4  */
5 
6 #ifndef CRC32_H
7 #define CRC32_H
8 
9 #include "settings.h"
10 #include <wx/defs.h>
11 
12 class wxString;
13 
14 namespace wxCrc32
15 {
16  DLLIMPORT wxUint32 FromFile(const wxString& filename);
18 }
19 
20 #endif // CRC32_H
#define DLLIMPORT
Definition: settings.h:16
DLLIMPORT wxUint32 FromString(const wxString &text)
Definition: crc32.cpp:64
unsigned int wxUint32
DLLIMPORT wxUint32 FromFile(const wxString &filename)
Definition: crc32.cpp:55
Definition: crc32.h:14