~ubuntu-branches/ubuntu/gutsy/audacity/gutsy-backports

« back to all changes in this revision

Viewing changes to lib-src/rtaudio/tests/Windows/ginclude.h

  • Committer: Bazaar Package Importer
  • Author(s): John Dong
  • Date: 2008-02-18 21:58:19 UTC
  • mfrom: (13.1.2 hardy)
  • Revision ID: james.westby@ubuntu.com-20080218215819-tmbcf1rx238r8gdv
Tags: 1.3.4-1.1ubuntu1~gutsy1
Automated backport upload; no source changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef __gInclude__
2
 
#define __gInclude__
3
 
 
4
 
#if SGI 
5
 
        #undef BEOS 
6
 
        #undef MAC 
7
 
        #undef WINDOWS
8
 
        //
9
 
        #define ASIO_BIG_ENDIAN 1
10
 
        #define ASIO_CPU_MIPS 1
11
 
#elif defined WIN32
12
 
        #undef BEOS 
13
 
        #undef MAC 
14
 
        #undef SGI
15
 
        #define WINDOWS 1
16
 
        #define ASIO_LITTLE_ENDIAN 1
17
 
        #define ASIO_CPU_X86 1
18
 
#elif BEOS
19
 
        #undef MAC 
20
 
        #undef SGI
21
 
        #undef WINDOWS
22
 
        #define ASIO_LITTLE_ENDIAN 1
23
 
        #define ASIO_CPU_X86 1
24
 
        //
25
 
#else
26
 
        #define MAC 1
27
 
        #undef BEOS 
28
 
        #undef WINDOWS
29
 
        #undef SGI
30
 
        #define ASIO_BIG_ENDIAN 1
31
 
        #define ASIO_CPU_PPC 1
32
 
#endif
33
 
 
34
 
// always
35
 
#define NATIVE_INT64 0
36
 
#define IEEE754_64FLOAT 1
37
 
 
38
 
#endif  // __gInclude__