~ubuntu-branches/ubuntu/quantal/vice/quantal

« back to all changes in this revision

Viewing changes to src/arch/win32/evc/config.h

  • Committer: Bazaar Package Importer
  • Author(s): Zed Pobre
  • Date: 2005-03-27 13:06:04 UTC
  • mfrom: (4 hoary)
  • mto: This revision was merged to the branch mainline in revision 5.
  • Revision ID: james.westby@ubuntu.com-20050327130604-zodmv0i60dbbmcik
Tags: 1.16-3
Apply patch from Andreas Jochens <aj@andaco.de> to correct building on
AMD64 and GCC 4.x (closes: #300936)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _CONFIG_H_
 
2
#define _CONFIG_H_
 
3
 
 
4
#define UNSTABLE
 
5
 
 
6
#define HAVE_ALLOCA             1
 
7
#define RETSIGTYPE              void
 
8
#define HAVE_RESID              1
 
9
#define HAS_JOYSTICK            1
 
10
#define HAVE_MOUSE              1
 
11
 
 
12
#define HAS_LONGLONG_INTEGER    1
 
13
#define HAS_UNLOCKRESOURCE      1
 
14
#define SIZEOF_UNSIGNED_INT     4
 
15
#define SIZEOF_UNSIGNED_LONG    4
 
16
#define SIZEOF_UNSIGNED_SHORT   2
 
17
#define HAVE_ATEXIT             1
 
18
#define HAVE_MEMMOVE            1
 
19
#define HAVE_LIMITS_H           1
 
20
#define HAVE_COMMCTRL_H         1
 
21
#define HAVE_SHLOBJ_H           1
 
22
#define HAVE_DIRENT_H           1
 
23
#define HAVE_WINIOCTL_H         1
 
24
#define HAVE_GUIDLIB            1
 
25
#define DWORD_IS_LONG           1
 
26
 
 
27
#define __i386__                1
 
28
 
 
29
#define inline                  _inline
 
30
 
 
31
#define _ANONYMOUS_UNION
 
32
 
 
33
#define S_ISDIR(m)              ((m) & _S_IFDIR)
 
34
 
 
35
#define MSVC_RC                 1
 
36
 
 
37
#define strcasecmp(s1, s2)      _stricmp(s1, s2)
 
38
 
 
39
#define itoa(s1, s2, s3)        _itoa(s1, s2, s3)
 
40
 
 
41
#endif