summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/msvc.h
blob: b929f53fc8f9a33c22ba28dc7e1630f204f22c9d (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/*
 *  File:       msvc.h
 *  Summary:    Header file for MSVC compiles
 *  Written by: Paul Du Bois
 */

#ifndef __msvc_h
#define __msvc_h

#if defined(TARGET_COMPILER_VC)

#include <io.h>

#define fileno _fileno
#define itoa _itoa
#define snprintf _snprintf
#define strcasecmp _stricmp
#define strdup _strdup
#define stricmp _stricmp
#define strlwr _strlwr
#define strncasecmp _strnicmp
#define strnicmp _strnicmp
#define unlink _unlink
#define ftruncate _chsize
#define putenv _putenv

// No va_copy in MSVC
#if !defined(va_copy)
#define va_copy(dst, src) \
   ((void) memcpy(&(dst), &(src), sizeof(va_list)))
#endif

#pragma warning( disable : 4290 )
#pragma warning( disable : 4351 )
// bool -> int
#pragma warning( disable : 4800 )

// struct vs class XXX: fix these some day!
#pragma warning( disable : 4099 )

// truncating conversions XXX: fix these too!
#pragma warning( disable : 4244 )


// ----------------------------------------------------------------------
// dirent.h replacement
// ----------------------------------------------------------------------

#define DT_DIR 4
#define DT_REG 8

struct DIR;
struct dirent
{
    // ino_t d_ino;
    unsigned short d_reclen;
    unsigned char d_type;
    unsigned short d_namlen;
    char d_name[255];
};

DIR* opendir(const char* path);
dirent* readdir(DIR*);
int closedir(DIR*);


#endif /* defined(TARGET_COMPILER_VC) */

#endif