ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/common/platform.h
(Generate patch)

Comparing ray/src/common/platform.h (file contents):
Revision 3.11 by schorsch, Mon Oct 27 10:19:31 2003 UTC vs.
Revision 3.12 by schorsch, Sun Mar 6 01:13:17 2016 UTC

# Line 5 | Line 5
5   #ifndef _RAD_PLATFORM_H_
6   #define _RAD_PLATFORM_H_
7  
8 < #ifdef _WIN32
8 > #if defined(_WIN32) || defined(_WIN64)
9  
10    #include <io.h>     /* _setmode() and stuff from unistd.h */
11  typedef long off_t;
12
11    #include <stdio.h>
12 +  typedef long off_t;
13 +  #define fdopen _fdopen
14 +  #define read _read
15 +  #define open _open
16 +  #define close _close
17 +  #define write _write
18 +  #define ftruncate _chsize_s
19 +  #define unlink _unlink
20 +  #define fileno _fileno
21    #define snprintf _snprintf
22 +  #define vsnprintf _vsnprintf
23 +  /* XXX should we check first if size_t is 32 bit? */
24 +  #define fseeko _fseeki64
25 +  #define lseek _lseek
26 +  #define access _access
27 +  #define mktemp _mktemp
28  
29 +  #include <string.h>
30 +  #define strcasecmp _stricmp
31 +  #define strncasecmp _strnicmp
32 +  #define strdup _strdup
33 +
34    #include <windows.h>
35 +  /* really weird defines by Microsoft in <resource.h>
36 +         generating lots of name collisions in Radiance. */
37 +  #if defined(rad1)
38 +    #undef rad1
39 +    #undef rad2
40 +    #undef rad3
41 +    #undef rad4
42 +    #undef rad5
43 +    #undef rad6
44 +    #undef rad7
45 +    #undef rad8
46 +    #undef rad9
47 +  #endif
48    #define sleep(s) Sleep(s*1000)
49  
50    #define NON_POSIX
# Line 27 | Line 58
58    #include <fcntl.h>  /* _O_BINARY, _O_TEXT */
59    #include <stdlib.h> /* _fmode */
60    #define SET_DEFAULT_BINARY() _fmode = _O_BINARY
61 <  #define SET_FILE_BINARY(fp) _setmode(fileno(fp),_O_BINARY)
61 >  #define SET_FILE_BINARY(fp) _setmode(_fileno(fp),_O_BINARY)
62    #define SET_FD_BINARY(fd) _setmode(fd,_O_BINARY)
63 +  #define putenv _putenv
64  
65 < #else /* _WIN32 */
65 > #else /* _WIN32 || _WIN64 */
66  
67    #ifdef AMIGA
68      #define NON_POSIX
# Line 48 | Line 80
80    #define SET_FILE_BINARY(fp)
81    #define SET_FD_BINARY(fd)
82  
83 < #endif /* _WIN32 */
83 > #endif /* _WIN32 || _WIN64 */
84  
85   #ifdef __cplusplus
86   extern "C" {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines