blob: 6291093e14a5ea32f9e4cf6cc8168837f14c98e5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
//
// Copyright (c) 2008, Wei Mingzhi. All rights reserved.
//
// Use, redistribution and modification of this code is unrestricted as long as this
// notice is preserved.
//
#ifndef CONFIG_H
#define CONFIG_H
#ifndef __i386__
#define __i386__ 1
#endif
#include <windows.h>
#ifndef MAXPATHLEN
#define MAXPATHLEN 256
#endif
#ifndef PACKAGE_VERSION
#define PACKAGE_VERSION "1.9"
#endif
#ifndef PREFIX
#define PREFIX "./"
#endif
#ifndef inline
#ifdef _DEBUG
#define inline /* */
#else
#ifdef _MSC_VER
#define inline __forceinline
#else
#define inline __inline__
#endif
#endif
#endif
#ifdef _MSC_VER
#pragma warning (disable:4133)
#pragma warning (disable:4142)
#pragma warning (disable:4244)
#pragma warning (disable:4996)
#pragma warning (disable:4018)
#pragma warning (disable:4761)
#endif
#endif
|