~ubuntu-branches/ubuntu/natty/vice/natty

« back to all changes in this revision

Viewing changes to src/arch/sdl/win64-msvc/config.h

  • Committer: Bazaar Package Importer
  • Author(s): Laszlo Boszormenyi (GCS)
  • Date: 2010-02-11 18:30:16 UTC
  • mfrom: (1.1.8 upstream) (9.2.2 sid)
  • Revision ID: james.westby@ubuntu.com-20100211183016-f6n8usn3tzp0u6dp
Tags: 2.2.dfsg-1
* New upstream release, C64 DTV is included so update package description
  and add it to the menu.
* Drop patch fixing build failure with gcc-4.4 , applied upstream.
* Fix some lintian problems and clean up debian/rules .

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef VICE_CONFIG_H_
 
2
#define VICE_CONFIG_H_
 
3
 
 
4
#define UNSTABLE
 
5
 
 
6
#pragma warning(disable:4996)
 
7
 
 
8
#define HAVE_ALLOCA           1
 
9
#define RETSIGTYPE            void
 
10
#define HAVE_RESID            1
 
11
#define HAVE_RESID_FP         1
 
12
#define HAVE_RESID_DTV        1
 
13
#define HAVE_PNG              1
 
14
#define HAVE_ZLIB             1
 
15
#define HAS_JOYSTICK          1
 
16
#define HAVE_MOUSE            1
 
17
#define HAVE_NETWORK          1
 
18
 
 
19
#define USE_SDLUI             1
 
20
#define WIN32_COMPILE         1
 
21
#define HAVE_SDLMAIN          1
 
22
#define HAVE_HWSCALE          1
 
23
#define HAVE_CATWEASELMKIII   1
 
24
#define HAVE_DYNLIB_SUPPORT   1
 
25
 
 
26
#define HAS_LONGLONG_INTEGER  1
 
27
#define HAS_UNLOCKRESOURCE    1
 
28
#define SIZEOF_UNSIGNED_INT   4
 
29
#define SIZEOF_UNSIGNED_LONG  4
 
30
#define SIZEOF_UNSIGNED_SHORT 2
 
31
#define HAVE_ATEXIT           1
 
32
#define HAVE_MEMMOVE          1
 
33
#define HAVE_STRERROR         1
 
34
#define HAVE_FCNTL_H          1
 
35
#define HAVE_LIMITS_H         1
 
36
#define HAVE_COMMCTRL_H       1
 
37
#define HAVE_SHLOBJ_H         1
 
38
#define HAVE_DIRECT_H         1
 
39
#define HAVE_DIRENT_H         1
 
40
#define HAVE_ERRNO_H          1
 
41
#define HAVE_IO_H             1
 
42
#define HAVE_PROCESS_H        1
 
43
#define HAVE_SYS_TYPES_H      1
 
44
#define HAVE_SYS_STAT_H       1
 
45
#define HAVE_SIGNAL_H         1
 
46
#define HAVE_WINIOCTL_H       1
 
47
 
 
48
#define DWORD_IS_LONG         1
 
49
#define HAVE_CRTDBG           1
 
50
#define HAVE_HTONL            1
 
51
#define HAVE_HTONS            1
 
52
#define HAVE_GETCWD           1
 
53
 
 
54
#define __i386__              1
 
55
 
 
56
#define inline                _inline
 
57
 
 
58
#define S_ISDIR(m)            ((m) & _S_IFDIR)
 
59
 
 
60
#define MSVC_RC               1
 
61
 
 
62
#define strcasecmp(s1, s2)    _stricmp(s1, s2)
 
63
#define HAVE_STRCASECMP       1
 
64
 
 
65
#define snprintf              _snprintf
 
66
 
 
67
#define int64_t_C(c)          (c ## i64)
 
68
#define uint64_t_C(c)         (c ## u64)
 
69
 
 
70
#define CONFIG_WIN32
 
71
 
 
72
#define _ANONYMOUS_UNION
 
73
 
 
74
#endif