This repository has been archived by the owner on Jul 6, 2021. It is now read-only.
forked from nevali/opencflite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConditionalMacros.h
1973 lines (1754 loc) · 72.4 KB
/
ConditionalMacros.h
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
File: ConditionalMacros.h
Contains: Set up for compiler independent conditionals
Version: QuickTime 7.1
Copyright: © 1993-2006 by Apple Computer, Inc., all rights reserved
Bugs?: For bug reports, consult the following page on
the World Wide Web:
http://developer.apple.com/bugreporter/
*/
#ifndef __CONDITIONALMACROS__
# define __CONDITIONALMACROS__
/******************************************************************************
UNIVERSAL_INTERFACES_VERSION
0x0400 --> version 4.0 (Mac OS X only)
0x0335 --> version 3.4
0x0331 --> version 3.3.1
0x0330 --> version 3.3
0x0320 --> version 3.2
0x0310 --> version 3.1
0x0301 --> version 3.0.1
0x0300 --> version 3.0
0x0210 --> version 2.1
This conditional did not exist prior to version 2.1
*******************************************************************************/
# define UNIVERSAL_INTERFACES_VERSION 0x0340
# define UNIVERSAL_INTERFACES_SEED_VERSION 22
/******************************************************************************
TARGET_CPU_Å
These conditionals specify which microprocessor instruction set is being
generated. At most one of these is true, the rest are false.
TARGET_CPU_PPC - Compiler is generating PowerPC instructions
TARGET_CPU_68K - Compiler is generating 680x0 instructions
TARGET_CPU_X86 - Compiler is generating x86 instructions
TARGET_CPU_MIPS - Compiler is generating MIPS instructions
TARGET_CPU_SPARC - Compiler is generating Sparc instructions
TARGET_CPU_ALPHA - Compiler is generating Dec Alpha instructions
TARGET_OS_Å
These conditionals specify in which Operating System the generated code will
run. At most one of the these is true, the rest are false.
TARGET_OS_MAC - Generate code will run under Mac OS
TARGET_OS_WIN32 - Generate code will run under 32-bit Windows
TARGET_OS_UNIX - Generate code will run under some unix
TARGET_RT_Å
These conditionals specify in which runtime the generated code will
run. This is needed when the OS and CPU support more than one runtime
(e.g. MacOS on 68K supports CFM68K and Classic 68k).
TARGET_RT_LITTLE_ENDIAN - Generated code uses little endian format for integers
TARGET_RT_BIG_ENDIAN - Generated code uses big endian format for integers
TARGET_RT_MAC_CFM - TARGET_OS_MAC is true and CFM68K or PowerPC CFM (TVectors) are used
TARGET_RT_MAC_MACHO - TARGET_OS_MAC is true and Mach-O style runtime
TARGET_RT_MAC_68881 - TARGET_OS_MAC is true and 68881 floating point instructions used
TARGET__API_Å_Å
These conditionals are used to differentiate between sets of API's on the same
processor under the same OS. The first section after _API_ is the OS. The
second section is the API set. Unlike TARGET_OS_ and TARGET_CPU_, these
conditionals are not mutally exclusive. This file will attempt to auto-configure
all TARGET_API_Å_Å values, but will often need a TARGET_API_Å_Å value predefined
in order to disambiguate.
TARGET_API_MAC_OS8 - Code is being compiled to run on System 7 through Mac OS 8.x
TARGET_API_MAC_CARBON - Code is being compiled to run on Mac OS 8 and Mac OS X via CarbonLib
TARGET_API_MAC_OSX - Code is being compiled to run on Mac OS X
PRAGMA_Å
These conditionals specify whether the compiler supports particular #pragma's
PRAGMA_IMPORT - Compiler supports: #pragma import on/off/reset
PRAGMA_ONCE - Compiler supports: #pragma once
PRAGMA_STRUCT_ALIGN - Compiler supports: #pragma options align=mac68k/power/reset
PRAGMA_STRUCT_PACK - Compiler supports: #pragma pack(n)
PRAGMA_STRUCT_PACKPUSH - Compiler supports: #pragma pack(push, n)/pack(pop)
PRAGMA_ENUM_PACK - Compiler supports: #pragma options(!pack_enums)
PRAGMA_ENUM_ALWAYSINT - Compiler supports: #pragma enumsalwaysint on/off/reset
PRAGMA_ENUM_OPTIONS - Compiler supports: #pragma options enum=int/small/reset
FOUR_CHAR_CODE
This conditional does the proper byte swapping to assue that a four character code (e.g. 'TEXT')
is compiled down to the correct value on all compilers.
FOUR_CHAR_CODE('abcd') - Convert a four-char-code to the correct 32-bit value
TYPE_Å
These conditionals specify whether the compiler supports particular types.
TYPE_LONGLONG - Compiler supports "long long" 64-bit integers
TYPE_BOOL - Compiler supports "bool"
TYPE_EXTENDED - Compiler supports "extended" 80/96 bit floating point
TYPE_LONGDOUBLE_IS_DOUBLE - Compiler implements "long double" same as "double"
FUNCTION_Å
These conditionals specify whether the compiler supports particular language extensions
to function prototypes and definitions.
FUNCTION_PASCAL - Compiler supports "pascal void Foo()"
FUNCTION_DECLSPEC - Compiler supports "__declspec(xxx) void Foo()"
FUNCTION_WIN32CC - Compiler supports "void __cdecl Foo()" and "void __stdcall Foo()"
*****************************************************************************/
# if defined(__MRC__)
/*
* MrC[pp] compiler from Apple Computer, Inc.
*/
# define TARGET_CPU_PPC 1
# define TARGET_CPU_68K 0
# define TARGET_CPU_X86 0
# define TARGET_CPU_MIPS 0
# define TARGET_CPU_SPARC 0
# define TARGET_CPU_ALPHA 0
# define TARGET_OS_MAC 1
# define TARGET_OS_WIN32 0
# define TARGET_OS_UNIX 0
# define TARGET_RT_LITTLE_ENDIAN 0
# define TARGET_RT_BIG_ENDIAN 1
# define TARGET_RT_MAC_CFM 1
# define TARGET_RT_MAC_MACHO 0
# define TARGET_RT_MAC_68881 0
# if (__MRC__ > 0x0200) && (__MRC__ < 0x0700)
# define PRAGMA_IMPORT 1
# else
# define PRAGMA_IMPORT 0
# endif /* __MRC__ */
# define PRAGMA_STRUCT_ALIGN 1
# define PRAGMA_ONCE 1
# define PRAGMA_STRUCT_PACK 0
# define PRAGMA_STRUCT_PACKPUSH 0
# define PRAGMA_ENUM_PACK 1
# define PRAGMA_ENUM_ALWAYSINT 0
# define PRAGMA_ENUM_OPTIONS 0
# define FOUR_CHAR_CODE(x) (x)
# if (__MRC__ > 0x0300) && (__MRC__ < 0x0700)
# if __option(longlong)
/* Current revs of MrC do not handle long long correctly */
/* The next rev will toggle this from the command line */
/* but for now we switch off long long. */
# define TYPE_LONGLONG 0
# else
# define TYPE_LONGLONG 0
# endif /* __option(longlong) */
# if __option(bool)
# define TYPE_BOOL 1
# else
# define TYPE_BOOL 0
# endif /* __option(bool) */
# define SLASH_INCLUDES_UNSUPPORTED !__option(unix_includes)
# else
# define TYPE_LONGLONG 0
# define TYPE_BOOL 0
# define SLASH_INCLUDES_UNSUPPORTED 1
# endif /* __MRC__ */
# define TYPE_EXTENDED 0
# define TYPE_LONGDOUBLE_IS_DOUBLE 0
# define FUNCTION_PASCAL 1
# define FUNCTION_DECLSPEC 0
# define FUNCTION_WIN32CC 0
# elif defined(__SC__) && (defined(MPW_CPLUS) || defined(MPW_C))
/*
* SC[pp] compiler from Apple Computer, Inc.
*/
# define TARGET_CPU_PPC 0
# define TARGET_CPU_68K 1
# define TARGET_CPU_X86 0
# define TARGET_CPU_MIPS 0
# define TARGET_CPU_SPARC 0
# define TARGET_CPU_ALPHA 0
# define TARGET_OS_MAC 1
# define TARGET_OS_WIN32 0
# define TARGET_OS_UNIX 0
# define TARGET_RT_LITTLE_ENDIAN 0
# define TARGET_RT_BIG_ENDIAN 1
# if defined(__CFM68K__)
# define TARGET_RT_MAC_CFM 1
# else
# define TARGET_RT_MAC_CFM 0
# endif /* __CFM68K__ */
# define TARGET_RT_MAC_MACHO 0
# if defined(mc68881)
# define TARGET_RT_MAC_68881 1
# else
# define TARGET_RT_MAC_68881 0
# endif /* mc68881 */
# if TARGET_RT_MAC_CFM
# define PRAGMA_IMPORT 1
# if (__SC__ <= 0x0810)
/* old versions of SC do NOT support Ò#pragma import resetÓ */
# define PRAGMA_IMPORT_OFF 1
# endif /* __SC__ */
# else
# define PRAGMA_IMPORT 0
# endif /* TARGET_RT_MAC_CFM */
# if (__SC__ >= 0x0801)
# define PRAGMA_STRUCT_ALIGN 1
# else
# define PRAGMA_STRUCT_ALIGN 0
# endif /* __SC__ */
# define PRAGMA_ONCE 0
# define PRAGMA_STRUCT_PACK 0
# define PRAGMA_STRUCT_PACKPUSH 0
# define PRAGMA_ENUM_PACK 1
# define PRAGMA_ENUM_ALWAYSINT 0
# define PRAGMA_ENUM_OPTIONS 0
# define FOUR_CHAR_CODE(x) (x)
# define TYPE_LONGLONG 0
# define TYPE_EXTENDED 1
# define TYPE_LONGDOUBLE_IS_DOUBLE 0
# if (__SC__ > 0x0810)
# if __option(bool)
# define TYPE_BOOL 1
# else
# define TYPE_BOOL 0
# endif /* __option(bool) */
# else
# define TYPE_BOOL 0
# endif /* __SC__ */
# if TARGET_RT_MAC_CFM
# define FUNCTION_PASCAL 0
# else
# define FUNCTION_PASCAL 1
# endif /* TARGET_RT_MAC_CFM */
# define FUNCTION_DECLSPEC 0
# define FUNCTION_WIN32CC 0
# define SLASH_INCLUDES_UNSUPPORTED !__option(unix_includes)
# elif defined(__MWERKS__)
/*
* CodeWarrior compiler from Metrowerks, Inc.
*/
# if (__MWERKS__ < 0x0900) || macintosh
# define TARGET_OS_MAC 1
# define TARGET_OS_WIN32 0
# define TARGET_OS_UNIX 0
# define TARGET_CPU_X86 0
# define TARGET_CPU_MIPS 0
# define TARGET_CPU_SPARC 0
# define TARGET_CPU_ALPHA 0
# define TARGET_RT_LITTLE_ENDIAN 0
# define TARGET_RT_BIG_ENDIAN 1
# if powerc
# define TARGET_CPU_PPC 1
# define TARGET_CPU_68K 0
# define TARGET_RT_MAC_CFM 1
# define TARGET_RT_MAC_MACHO 0
# define TARGET_RT_MAC_68881 0
# define TYPE_LONGDOUBLE_IS_DOUBLE 1
# else
# define TARGET_CPU_PPC 0
# define TARGET_CPU_68K 1
# if defined(__CFM68K__)
# define TARGET_RT_MAC_CFM 1
# else
# define TARGET_RT_MAC_CFM 0
# endif /* __CFM68K__ */
# define TARGET_RT_MAC_MACHO 0
# if __MC68881__
# define TARGET_RT_MAC_68881 1
# else
# define TARGET_RT_MAC_68881 0
# endif /* __MC68881__ */
# if __option(IEEEdoubles)
# define TYPE_LONGDOUBLE_IS_DOUBLE 0
# else
# define TYPE_LONGDOUBLE_IS_DOUBLE 1
# endif /* __option(IEEEdoubles) */
# endif
# define PRAGMA_ONCE 1
# if (__MWERKS__ >= 0x0700)
# define PRAGMA_IMPORT TARGET_RT_MAC_CFM
# else
# define PRAGMA_IMPORT 0
# endif /* __MWERKS__ */
# define PRAGMA_STRUCT_ALIGN 1
# define PRAGMA_STRUCT_PACK 0
# define PRAGMA_STRUCT_PACKPUSH 0
# define PRAGMA_ENUM_PACK 0
# define PRAGMA_ENUM_ALWAYSINT 1
# define PRAGMA_ENUM_OPTIONS 0
# if __option(enumsalwaysint) && __option(ANSI_strict)
# define FOUR_CHAR_CODE(x) ((long)(x)) /* otherwise compiler will complain about values with high bit set */
# else
# define FOUR_CHAR_CODE(x) (x)
# endif /* __option(enumsalwaysint) && __option(ANSI_strict) */
# if TARGET_CPU_68K && !TARGET_RT_MAC_CFM
# define FUNCTION_PASCAL 1
# else
# define FUNCTION_PASCAL 1
# endif /* TARGET_CPU_68K && !TARGET_RT_MAC_CFM */
# if (__MWERKS__ >= 0x2000)
# define FUNCTION_DECLSPEC 1
# else
# define FUNCTION_DECLSPEC 0
# endif /* __MWERKS__ */
# define FUNCTION_WIN32CC 0
# elif (__MWERKS__ >= 0x0900) && __INTEL__
# define TARGET_CPU_PPC 0
# define TARGET_CPU_68K 0
# define TARGET_CPU_X86 1
# define TARGET_CPU_MIPS 0
# define TARGET_CPU_SPARC 0
# define TARGET_CPU_ALPHA 0
# define TARGET_OS_MAC 0
# define TARGET_OS_WIN32 1
# define TARGET_OS_UNIX 0
# define TARGET_RT_LITTLE_ENDIAN 1
# define TARGET_RT_BIG_ENDIAN 0
# define __COREAUDIO_USE_FLAT_INCLUDES__ 1
# define PRAGMA_ONCE 1
# define PRAGMA_IMPORT 0
# define PRAGMA_STRUCT_ALIGN 0
# define PRAGMA_STRUCT_PACK 1
# define PRAGMA_STRUCT_PACKPUSH 1
# define PRAGMA_ENUM_PACK 0
# define PRAGMA_ENUM_ALWAYSINT 1
# define PRAGMA_ENUM_OPTIONS 0
# define FOUR_CHAR_CODE(x) (x)
# define FUNCTION_PASCAL 0
# ifndef FUNCTION_DECLSPEC /* allow use of __declspec(dllimport) to be enabled */
# define FUNCTION_DECLSPEC 0 /* QuickTime for Windows cannot use dllimport */
# endif /* !FUNCTION_DECLSPEC */
# ifndef FUNCTION_WIN32CC /* allow calling convention to be overriddden */
# define FUNCTION_WIN32CC 1
# endif /* !FUNCTION_WIN32CC */
# define TYPE_LONGDOUBLE_IS_DOUBLE 1
# elif (__MWERKS__ >= 0x1900) && __MIPS__
# define TARGET_CPU_PPC 0
# define TARGET_CPU_68K 0
# define TARGET_CPU_X86 0
# define TARGET_CPU_MIPS 1
# define TARGET_CPU_SPARC 0
# define TARGET_CPU_ALPHA 0
# define TARGET_OS_MAC 0
# define TARGET_OS_WIN32 0
# define TARGET_OS_UNIX 1
# if __option(little_endian)
# define TARGET_RT_LITTLE_ENDIAN 1
# define TARGET_RT_BIG_ENDIAN 0
# else
# define TARGET_RT_LITTLE_ENDIAN 0
# define TARGET_RT_BIG_ENDIAN 1
# endif /* __option(little_endian) */
# define PRAGMA_ONCE 1
# define PRAGMA_IMPORT 0
# define PRAGMA_STRUCT_ALIGN 0
# define PRAGMA_STRUCT_PACK 1
# define PRAGMA_STRUCT_PACKPUSH 0
# define PRAGMA_ENUM_PACK 0
# define PRAGMA_ENUM_ALWAYSINT 1
# define PRAGMA_ENUM_OPTIONS 0
# define FOUR_CHAR_CODE(x) (x)
# define FUNCTION_PASCAL 0
# define FUNCTION_DECLSPEC 0
# define FUNCTION_WIN32CC 0
# define TYPE_LONGDOUBLE_IS_DOUBLE 1
# elif (__MWERKS__ >= 0x2110) && __MACH__
# define TARGET_CPU_PPC 1
# define TARGET_CPU_68K 0
# define TARGET_CPU_X86 0
# define TARGET_CPU_MIPS 0
# define TARGET_CPU_SPARC 0
# define TARGET_CPU_ALPHA 0
# define TARGET_OS_MAC 1
# define TARGET_OS_WIN32 0
# define TARGET_OS_UNIX 0
# if __option(little_endian)
# define TARGET_RT_LITTLE_ENDIAN 1
# define TARGET_RT_BIG_ENDIAN 0
# else
# define TARGET_RT_LITTLE_ENDIAN 0
# define TARGET_RT_BIG_ENDIAN 1
# endif /* __option(little_endian) */
# define TARGET_RT_MAC_CFM 0
# define TARGET_RT_MAC_MACHO 1
# define TARGET_RT_MAC_68881 0
# define PRAGMA_ONCE 1
# define PRAGMA_IMPORT 0
# define PRAGMA_STRUCT_ALIGN 1
# define PRAGMA_STRUCT_PACK 1
# define PRAGMA_STRUCT_PACKPUSH 0
# define PRAGMA_ENUM_PACK 0
# define PRAGMA_ENUM_ALWAYSINT 1
# define PRAGMA_ENUM_OPTIONS 0
# define FOUR_CHAR_CODE(x) (x)
# define FUNCTION_PASCAL 1
# define FUNCTION_DECLSPEC 1
# define FUNCTION_WIN32CC 0
# define TYPE_LONGDOUBLE_IS_DOUBLE 1
# else
# error unknown Metrowerks compiler
# endif /* __MWERKS__ */
# if (__MWERKS__ >= 0x1100)
# if __option(longlong)
# define TYPE_LONGLONG 1
# else
# define TYPE_LONGLONG 0
# endif /* __option(longlong) */
# else
# define TYPE_LONGLONG 0
# endif /* __MWERKS__ */
# if (__MWERKS__ >= 0x1000)
# if __option(bool)
# define TYPE_BOOL 1
# else
# define TYPE_BOOL 0
# endif /* __option(bool) */
# else
# define TYPE_BOOL 0
# endif /* __MWERKS__ */
# define TYPE_EXTENDED 0
# define SLASH_INCLUDES_UNSUPPORTED 1
# elif defined(SYMANTEC_CPLUS) || defined(SYMANTEC_C)
/*
* C and C++ compiler from Symantec, Inc.
*/
# define TARGET_OS_MAC 1
# define TARGET_OS_WIN32 0
# define TARGET_OS_UNIX 0
# define TARGET_CPU_X86 0
# define TARGET_CPU_MIPS 0
# define TARGET_CPU_SPARC 0
# define TARGET_CPU_ALPHA 0
# define TARGET_RT_LITTLE_ENDIAN 0
# define TARGET_RT_BIG_ENDIAN 1
# if powerc
# define TARGET_CPU_PPC 1
# define TARGET_CPU_68K 0
# define TARGET_RT_MAC_CFM 1
# define TARGET_RT_MAC_MACHO 0
# define TARGET_RT_MAC_68881 0
# else
# define TARGET_CPU_PPC 0
# define TARGET_CPU_68K 1
# if defined(__CFM68K)
# define TARGET_RT_MAC_CFM 1
# else
# define TARGET_RT_MAC_CFM 0
# endif /* __CFM68K */
# define TARGET_RT_MAC_MACHO 0
# if mc68881
# define TARGET_RT_MAC_68881 1
# else
# define TARGET_RT_MAC_68881 0
# endif /* mc68881 */
# endif /* powerc */
# define PRAGMA_IMPORT 0
# define PRAGMA_ONCE 1
# define PRAGMA_STRUCT_ALIGN 1
# define PRAGMA_STRUCT_PACK 0
# define PRAGMA_STRUCT_PACKPUSH 0
# define PRAGMA_ENUM_PACK 1
# define PRAGMA_ENUM_ALWAYSINT 0
# define PRAGMA_ENUM_OPTIONS 0
# define FOUR_CHAR_CODE(x) (x)
# if __useAppleExts__
# define TYPE_EXTENDED 1
# else
# define TYPE_EXTENDED 0
# endif /* __useAppleExts__ */
# define TYPE_LONGLONG 0
# define TYPE_BOOL 0
# define TYPE_LONGDOUBLE_IS_DOUBLE 1
# define FUNCTION_PASCAL 0
# define FUNCTION_DECLSPEC 0
# define FUNCTION_WIN32CC 0
# define SLASH_INCLUDES_UNSUPPORTED 1
# elif defined(THINK_C)
/*
* THINK C compiler from Symantec, Inc. << WARNING: Unsupported Compiler >>
*/
# warning The THINK C compiler is an Unsupported Compiler
# define TARGET_CPU_PPC 0
# define TARGET_CPU_68K 1
# define TARGET_CPU_X86 0
# define TARGET_CPU_MIPS 0
# define TARGET_CPU_SPARC 0
# define TARGET_CPU_ALPHA 0
# define TARGET_OS_MAC 1
# define TARGET_OS_WIN32 0
# define TARGET_OS_UNIX 0
# define TARGET_RT_LITTLE_ENDIAN 0
# define TARGET_RT_BIG_ENDIAN 1
# define TARGET_RT_MAC_CFM 0
# define TARGET_RT_MAC_MACHO 0
# if defined(mc68881)
# define TARGET_RT_MAC_68881 1
# else
# define TARGET_RT_MAC_68881 0
# endif /* mc68881 */
# define PRAGMA_IMPORT 0
# define PRAGMA_STRUCT_ALIGN 0
# define PRAGMA_ONCE 1
# define PRAGMA_STRUCT_PACK 0
# define PRAGMA_STRUCT_PACKPUSH 0
# define PRAGMA_ENUM_PACK 1
# define PRAGMA_ENUM_ALWAYSINT 0
# define PRAGMA_ENUM_OPTIONS 0
# define FOUR_CHAR_CODE(x) (x)
# define TYPE_EXTENDED 1
# define TYPE_LONGLONG 0
# define TYPE_BOOL 0
# define TYPE_LONGDOUBLE_IS_DOUBLE 1
# define FUNCTION_PASCAL 1
# define FUNCTION_DECLSPEC 0
# define FUNCTION_WIN32CC 0
# define SLASH_INCLUDES_UNSUPPORTED 1
# elif defined(__PPCC__)
/*
* PPCC compiler from Apple Computer, Inc. << WARNING: Unsupported Compiler >>
*/
# warning The PPCC compiler is an Unsupported Compiler
# define TARGET_CPU_PPC 1
# define TARGET_CPU_68K 0
# define TARGET_CPU_X86 0
# define TARGET_CPU_MIPS 0
# define TARGET_CPU_SPARC 0
# define TARGET_CPU_ALPHA 0
# define TARGET_OS_MAC 1
# define TARGET_OS_WIN32 0
# define TARGET_OS_UNIX 0
# define TARGET_RT_LITTLE_ENDIAN 0
# define TARGET_RT_BIG_ENDIAN 1
# define TARGET_RT_MAC_CFM 1
# define TARGET_RT_MAC_MACHO 0
# define TARGET_RT_MAC_68881 0
# define PRAGMA_IMPORT 0
# define PRAGMA_STRUCT_ALIGN 1
# define PRAGMA_ONCE 0
# define PRAGMA_STRUCT_PACK 0
# define PRAGMA_STRUCT_PACKPUSH 0
# define PRAGMA_ENUM_PACK 0
# define PRAGMA_ENUM_ALWAYSINT 0
# define PRAGMA_ENUM_OPTIONS 0
# define FOUR_CHAR_CODE(x) (x)
# define TYPE_EXTENDED 0
# define TYPE_LONGLONG 0
# define TYPE_BOOL 0
# define TYPE_LONGDOUBLE_IS_DOUBLE 1
# define FUNCTION_PASCAL 0
# define FUNCTION_DECLSPEC 0
# define FUNCTION_WIN32CC 0
# define SLASH_INCLUDES_UNSUPPORTED 1
# elif defined(applec) && !defined(__SC__)
/*
* MPW C compiler from Apple Computer, Inc. << WARNING: Unsupported Compiler >>
*/
# warning The MPW C compiler is an Unsupported Compiler
# define TARGET_CPU_PPC 0
# define TARGET_CPU_68K 1
# define TARGET_CPU_X86 0
# define TARGET_CPU_MIPS 0
# define TARGET_CPU_SPARC 0
# define TARGET_CPU_ALPHA 0
# define TARGET_OS_MAC 1
# define TARGET_OS_WIN32 0
# define TARGET_OS_UNIX 0
# define TARGET_RT_LITTLE_ENDIAN 0
# define TARGET_RT_BIG_ENDIAN 1
# define TARGET_RT_MAC_CFM 0
# define TARGET_RT_MAC_MACHO 0
# if defined(mc68881)
# define TARGET_RT_MAC_68881 1
# else
# define TARGET_RT_MAC_68881 0
# endif /* mc68881 */
# define PRAGMA_IMPORT 0
# define PRAGMA_STRUCT_ALIGN 0
# define PRAGMA_ONCE 0
# define PRAGMA_STRUCT_PACK 0
# define PRAGMA_STRUCT_PACKPUSH 0
# define PRAGMA_ENUM_PACK 0
# define PRAGMA_ENUM_ALWAYSINT 0
# define PRAGMA_ENUM_OPTIONS 0
/* Note: MPW C 3.2 had a bug where MACRO('xx ') would cause 'xx ' to be misevaluated */
# define FOUR_CHAR_CODE
# define TYPE_EXTENDED 1
# define TYPE_LONGLONG 0
# define TYPE_BOOL 0
# define TYPE_LONGDOUBLE_IS_DOUBLE 0
# define FUNCTION_PASCAL 1
# define FUNCTION_DECLSPEC 0
# define FUNCTION_WIN32CC 0
# define SLASH_INCLUDES_UNSUPPORTED 1
# elif defined(__GNUC__) && (defined(__APPLE_CPP__) || defined(__APPLE_CC__) || defined(__NEXT_CPP__) || defined(__APPLE__))
/*
* gcc based compilers used on OpenStep -> Rhapsody -> Mac OS X
*/
# if defined(__ppc__) || defined(powerpc) || defined(ppc)
# define TARGET_CPU_PPC 1
# define TARGET_CPU_68K 0
# define TARGET_CPU_X86 0
# define TARGET_CPU_MIPS 0
# define TARGET_CPU_SPARC 0
# define TARGET_CPU_ALPHA 0
# define TARGET_RT_MAC_68881 0
# define TARGET_RT_LITTLE_ENDIAN 0
# define TARGET_RT_BIG_ENDIAN 1
# ifdef __MACH__
# define TARGET_RT_MAC_MACHO 1
# define TARGET_RT_MAC_CFM 0
# else
# define TARGET_RT_MAC_MACHO 0
# define TARGET_RT_MAC_CFM 1
# endif /* __MACH__ */
# elif defined(m68k)
# define TARGET_CPU_PPC 0
# define TARGET_CPU_68K 1
# define TARGET_CPU_X86 0
# define TARGET_CPU_MIPS 0
# define TARGET_CPU_SPARC 0
# define TARGET_CPU_ALPHA 0
# define TARGET_RT_MAC_CFM 0
# define TARGET_RT_MAC_MACHO 1
# define TARGET_RT_MAC_68881 0
# define TARGET_RT_LITTLE_ENDIAN 0
# define TARGET_RT_BIG_ENDIAN 1
# elif defined(sparc)
# define TARGET_CPU_PPC 0
# define TARGET_CPU_68K 0
# define TARGET_CPU_X86 0
# define TARGET_CPU_MIPS 0
# define TARGET_CPU_SPARC 1
# define TARGET_CPU_ALPHA 0
# define TARGET_RT_MAC_CFM 0
# define TARGET_RT_MAC_MACHO 1
# define TARGET_RT_MAC_68881 0
# define TARGET_RT_LITTLE_ENDIAN 0
# define TARGET_RT_BIG_ENDIAN 1
# elif defined(__i386__) || defined(i386) || defined(intel) || defined(__x86_64__)
# define TARGET_CPU_PPC 0
# define TARGET_CPU_68K 0
# define TARGET_CPU_X86 1
# define TARGET_CPU_MIPS 0
# define TARGET_CPU_SPARC 0
# define TARGET_CPU_ALPHA 0
# define TARGET_RT_MAC_CFM 0
# define TARGET_RT_MAC_MACHO 1
# define TARGET_RT_MAC_68881 0
# define TARGET_RT_LITTLE_ENDIAN 1
# define TARGET_RT_BIG_ENDIAN 0
# else
# error GNU C compiler is unrecognized because architecture is unrecognized
# endif /* architecture */
# ifndef TARGET_OS_MAC
# define TARGET_OS_MAC 1
# endif /* !TARGET_OS_MAC */
# ifndef TARGET_OS_WIN32
# define TARGET_OS_WIN32 0
# endif /* !TARGET_OS_WIN32 */
# ifndef TARGET_OS_UNIX
# define TARGET_OS_UNIX 0
# endif /* !TARGET_OS_UNIX */
# define PRAGMA_IMPORT 0
# define PRAGMA_STRUCT_ALIGN 1
# define PRAGMA_ONCE 0
# define PRAGMA_STRUCT_PACK 0
# define PRAGMA_STRUCT_PACKPUSH 0
# define PRAGMA_ENUM_PACK 0
# define PRAGMA_ENUM_ALWAYSINT 0
# define PRAGMA_ENUM_OPTIONS 0
# define FOUR_CHAR_CODE(x) (x)
# define TYPE_LONGDOUBLE_IS_DOUBLE 1
# define TYPE_EXTENDED 0
# if __GNUC__ >= 2
# define TYPE_LONGLONG 1
# else
# define TYPE_LONGLONG 0
# endif /* __GNUC__ */
# ifdef __cplusplus
# define TYPE_BOOL 1
# else
# define TYPE_BOOL 0
# endif /* __cplusplus */
# define FUNCTION_PASCAL 0
# define FUNCTION_DECLSPEC 0
# define FUNCTION_WIN32CC 0
# elif defined(__GNUC__) && defined(__linux__)
/*
* gcc (egcs, really) for MkLinux. << WARNING: Unsupported Compiler >>
*/
# warning Using the GNU C complier on Linux is Unsupported by this header.
# if #cpu(powerpc)
# define TARGET_CPU_PPC 1
# define TARGET_CPU_68K 0
# define TARGET_CPU_X86 0
# define TARGET_CPU_MIPS 0
# define TARGET_CPU_SPARC 0
# define TARGET_CPU_ALPHA 0
# define TARGET_RT_MAC_CFM 1
# define TARGET_RT_MAC_MACHO 0
# define TARGET_RT_MAC_68881 0
# define TARGET_RT_LITTLE_ENDIAN 0
# define TARGET_RT_BIG_ENDIAN 1
# elif #cpu(m68k)
# define TARGET_CPU_PPC 0
# define TARGET_CPU_68K 1
# define TARGET_CPU_X86 0
# define TARGET_CPU_MIPS 0
# define TARGET_CPU_SPARC 0
# define TARGET_CPU_ALPHA 0
# define TARGET_RT_LITTLE_ENDIAN 0
# define TARGET_RT_BIG_ENDIAN 1
# define TARGET_RT_MAC_CFM 0
# define TARGET_RT_MAC_MACHO 0
# define TARGET_RT_MAC_68881 0
# elif #cpu(i386)
# define TARGET_CPU_PPC 0
# define TARGET_CPU_68K 0
# define TARGET_CPU_X86 1
# define TARGET_CPU_MIPS 0
# define TARGET_CPU_SPARC 0
# define TARGET_CPU_ALPHA 0
# define TARGET_RT_MAC_CFM 0
# define TARGET_RT_MAC_MACHO 0
# define TARGET_RT_MAC_68881 0
# define TARGET_OS_MAC 0
# define TARGET_OS_WIN32 0
# define TARGET_OS_UNIX 1
# define TARGET_RT_LITTLE_ENDIAN 1
# define TARGET_RT_BIG_ENDIAN 0
# define __COREAUDIO_USE_FLAT_INCLUDES__ 1
# define PRAGMA_IMPORT 0
# define PRAGMA_STRUCT_ALIGN 0
# define PRAGMA_ONCE 0
# define PRAGMA_STRUCT_PACK 1
# define PRAGMA_STRUCT_PACKPUSH 0
# define PRAGMA_ENUM_PACK 0
# define PRAGMA_ENUM_ALWAYSINT 0
# define PRAGMA_ENUM_OPTIONS 0
# define FOUR_CHAR_CODE(x) (x)
# define TYPE_EXTENDED 0
# define TYPE_LONGDOUBLE_IS_DOUBLE 1
# define FUNCTION_PASCAL 0
# define FUNCTION_DECLSPEC 0
# define FUNCTION_WIN32CC 0
# else
# error unsupported GNU C compiler
# endif /* #cpu */
# if #system(macos)
# define TARGET_OS_MAC 1
# define TARGET_OS_WIN32 0
# define TARGET_OS_UNIX 0
# elif #system(unix)
# define TARGET_OS_MAC 0
# define TARGET_OS_WIN32 0
# define TARGET_OS_UNIX 1
# else
# error unsupported GNU C compiler
# endif /* #system */
# define PRAGMA_IMPORT 0
# define PRAGMA_STRUCT_ALIGN 0
# define PRAGMA_ONCE 0
# define PRAGMA_STRUCT_PACK 1
# define PRAGMA_STRUCT_PACKPUSH 0
# define PRAGMA_ENUM_PACK 0
# define PRAGMA_ENUM_ALWAYSINT 0
# define PRAGMA_ENUM_OPTIONS 0
# define FOUR_CHAR_CODE(x) (x)
# define TYPE_LONGDOUBLE_IS_DOUBLE 1
# define TYPE_EXTENDED 0
# ifdef _LONG_LONG
# define TYPE_LONGLONG 1
# else
# define TYPE_LONGLONG 0
# endif /* _LONG_LONG */
# define TYPE_BOOL 0
# define FUNCTION_PASCAL 0
# define FUNCTION_DECLSPEC 0
# define FUNCTION_WIN32CC 0
# elif defined(__GNUC__) && defined(__MINGW32__)
/*
* Mingw gnu gcc/egcs compiler for Win32 systems (http://www.mingw.org).
*/
# define TARGET_CPU_PPC 0
# define TARGET_CPU_68K 0
# define TARGET_CPU_X86 1
# define TARGET_CPU_MIPS 0
# define TARGET_CPU_SPARC 0
# define TARGET_CPU_ALPHA 0
# define TARGET_RT_MAC_CFM 0
# define TARGET_RT_MAC_MACHO 0
# define TARGET_RT_MAC_68881 0
# define TARGET_OS_MAC 0
# define TARGET_OS_WIN32 1
# define TARGET_OS_UNIX 0
# define TARGET_RT_LITTLE_ENDIAN 1
# define TARGET_RT_BIG_ENDIAN 0
# define __COREAUDIO_USE_FLAT_INCLUDES__ 1
# define PRAGMA_IMPORT 0
# define PRAGMA_STRUCT_ALIGN 0
# define PRAGMA_ONCE 0
# define PRAGMA_STRUCT_PACK 1
# define PRAGMA_STRUCT_PACKPUSH 0
# define PRAGMA_ENUM_PACK 0
# define PRAGMA_ENUM_ALWAYSINT 0
# define PRAGMA_ENUM_OPTIONS 0
# define FOUR_CHAR_CODE(x) (x)
# define TYPE_EXTENDED 0
# define TYPE_LONGDOUBLE_IS_DOUBLE 1
# define TYPE_LONGLONG 1
# define TYPE_BOOL 1
# define FUNCTION_PASCAL 0
# define FUNCTION_DECLSPEC 0
# define FUNCTION_WIN32CC 0
# elif defined(__GNUC__)
/*
* gC for MPW from Free Software Foundation, Inc.
*/
# if #cpu(powerpc)
# define TARGET_CPU_PPC 1
# define TARGET_CPU_68K 0
# define TARGET_CPU_X86 0
# define TARGET_CPU_MIPS 0
# define TARGET_CPU_SPARC 0
# define TARGET_CPU_ALPHA 0
# define TARGET_RT_MAC_CFM 1
# define TARGET_RT_MAC_MACHO 0
# define TARGET_RT_MAC_68881 0
# elif #cpu(m68k)
# define TARGET_CPU_PPC 0
# define TARGET_CPU_68K 1
# define TARGET_CPU_X86 0
# define TARGET_CPU_MIPS 0
# define TARGET_CPU_SPARC 0
# define TARGET_CPU_ALPHA 0
# define TARGET_RT_MAC_CFM 0
# define TARGET_RT_MAC_MACHO 0
# define TARGET_RT_MAC_68881 0
# else
# error unsupported GNU C compiler
# endif /* #cpu */
# if #system(macos)
# define TARGET_OS_MAC 1
# define TARGET_OS_WIN32 0
# define TARGET_OS_UNIX 0
# elif #system(unix)
# define TARGET_OS_MAC 0
# define TARGET_OS_WIN32 0
# define TARGET_OS_UNIX 1
# else
# error unsupported GNU C compiler
# endif /* #system */
# define TARGET_RT_LITTLE_ENDIAN 0
# define TARGET_RT_BIG_ENDIAN 1
# define PRAGMA_IMPORT 0
# define PRAGMA_STRUCT_ALIGN 1
# define PRAGMA_ONCE 0
# define PRAGMA_STRUCT_PACK 0
# define PRAGMA_STRUCT_PACKPUSH 0
# define PRAGMA_ENUM_PACK 0
# define PRAGMA_ENUM_ALWAYSINT 0
# define PRAGMA_ENUM_OPTIONS 0
# define FOUR_CHAR_CODE(x) (x)
# define TYPE_LONGDOUBLE_IS_DOUBLE 1
# define TYPE_EXTENDED 0
# ifdef _LONG_LONG
# define TYPE_LONGLONG 1
# else
# define TYPE_LONGLONG 0
# endif /* _LONG_LONG */
# define TYPE_BOOL 0
# define FUNCTION_PASCAL 0
# define FUNCTION_DECLSPEC 0
# define FUNCTION_WIN32CC 0
# elif defined(__xlc) || defined(__xlC) || defined(__xlC__) || defined(__XLC121__)
/*
* xlc and xlC on RS/6000 from IBM, Inc.
*/
# define TARGET_CPU_PPC 1
# define TARGET_CPU_68K 0
# define TARGET_CPU_X86 0
# define TARGET_CPU_MIPS 0
# define TARGET_CPU_SPARC 0
# define TARGET_CPU_ALPHA 0
# if defined(_AIX)
# define TARGET_OS_MAC 0
# define TARGET_OS_UNIX 1
# else
# define TARGET_OS_MAC 1
# define TARGET_OS_UNIX 0
# endif /* _AIX */
# define TARGET_OS_WIN32 0
# define TARGET_RT_LITTLE_ENDIAN 0
# define TARGET_RT_BIG_ENDIAN 1
# define TARGET_RT_MAC_CFM 1
# define TARGET_RT_MAC_MACHO 0
# define TARGET_RT_MAC_68881 0
# define PRAGMA_IMPORT 0
# define PRAGMA_STRUCT_ALIGN 1
# define PRAGMA_ONCE 0
# define PRAGMA_STRUCT_PACK 0
# define PRAGMA_STRUCT_PACKPUSH 0
# define PRAGMA_ENUM_PACK 0
# define PRAGMA_ENUM_ALWAYSINT 0
# define PRAGMA_ENUM_OPTIONS 1
# define FOUR_CHAR_CODE(x) (x)
# define TYPE_LONGDOUBLE_IS_DOUBLE 0
# define TYPE_EXTENDED 0
# ifdef _LONG_LONG
# define TYPE_LONGLONG 1
# else
# define TYPE_LONGLONG 0
# endif /* _LONG_LONG */
# define TYPE_BOOL 0
# define FUNCTION_PASCAL 0
# define FUNCTION_DECLSPEC 0
# define FUNCTION_WIN32CC 0
# elif defined(_MSC_VER) && !defined(__MWERKS__)
/*
* Visual Studio C/C++ from Microsoft, Inc.
*/
# if defined(_M_M68K) /* Visual C++ with Macintosh 68K target */
# define TARGET_CPU_PPC 0
# define TARGET_CPU_68K 1
# define TARGET_CPU_X86 0
# define TARGET_CPU_MIPS 0
# define TARGET_CPU_SPARC 0
# define TARGET_CPU_ALPHA 0