blob: 72565de221d94bcbbe7e58532d20d1d2dc19a4a7 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
 | #ifndef __MPQ_MISC_H__
#define __MPQ_MISC_H__
#ifdef WIN32
typedef unsigned long int uint32_t;
#else
#include <stdint.h>
#endif
#ifdef __cplusplus
extern "C" {
#endif
uint32_t mpqlib_hash_filename(const char * str);
uint32_t mpqlib_hashA_filename(const char * str);
uint32_t mpqlib_hashB_filename(const char * str);
#ifdef __cplusplus
}
#endif
#endif
 |