2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
20 * @APPLE_LICENSE_HEADER_END@
23 * Copyright (c) 1999 Apple Computer, Inc. All rights reserved.
32 typedef unsigned int UInt
;
33 typedef signed int SInt
;
35 #ifndef __MACTYPES__ /* CF MacTypes.h */
36 #ifndef __TYPES__ /* guess... Mac Types.h */
38 typedef unsigned char UInt8
;
39 typedef unsigned short UInt16
;
40 typedef unsigned long UInt32
;
41 typedef unsigned long long UInt64
;
42 #if defined(__BIG_ENDIAN__)
43 typedef struct UnsignedWide
{
47 #elif defined(__LITTLE_ENDIAN__)
48 typedef struct UnsignedWide
{
53 #error Unknown endianess.
56 typedef signed char SInt8
;
57 typedef signed short SInt16
;
58 typedef signed long SInt32
;
59 typedef signed long long SInt64
;
60 #if defined(__BIG_ENDIAN__)
65 #elif defined(__LITTLE_ENDIAN__)
71 #error Unknown endianess.
74 typedef SInt32 OSStatus
;
75 typedef UnsignedWide AbsoluteTime
;
76 typedef UInt32 OptionBits
;
78 typedef unsigned char Boolean
;
80 #endif /* __TYPES__ */
81 #endif /* __MACTYPES__ */
84 #endif /* _OS_OSTYPES_H */