1/*
2 * Copyright (c) 2009 Apple Inc. All rights reserved.
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. Please obtain a copy of the License at
10 * http://www.opensource.apple.com/apsl/ and read it before using this
11 * file.
12 *
13 * The Original Code and all software distributed under the License are
14 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
18 * Please see the License for the specific language governing rights and
19 * limitations under the License.
20 *
21 * @APPLE_LICENSE_HEADER_END@
22 */
23/*
24	File:		DCFireWireDVVersionAndRezIDs.h
25
26	Contains:	Contants that define the version of the Crush Isochronous Data Hanlder
27				and any PRIVATE ResourceIDs it might need.
28
29	Copyright:	� 1997-1999 by Apple Computer, Inc., all rights reserved.
30
31	File Ownership:
32
33		DRI:				Sean Williams
34
35	Writers:
36
37
38	Change History (most recent first):
39
40	   <1>	 6/15/99		KW		Created
41*/
42
43
44#ifndef __DCFIREWIREDVVERSIONANDREZIDS__
45#define __DCFIREWIREDVVERSIONANDREZIDS__
46
47
48
49//
50// IDH Crush Version Constants
51//	When a component is queried with with the kComponentVersionSelect selector, it is
52//	supposed to return the 'interface version' in the high word of the ComponentResult
53//	and the 'code revision' in the low word of the Component result.
54
55enum { kDCFireWireDVInterfaceVersion = 1 };
56
57
58//
59// kDCFireWireDVCodeVersion
60// 1.0.0 - Initial release
61
62#define	kMajorRevisionNumber		0x01
63#define	kMinorRevisionNumber		0x00
64#define kDevelopmentStage			development
65#define kBuildVersionNumber			0x00
66#define	kShortVersionString			"1.0.0d0"
67#define	kLongVersionString			"1.0.0d0 � Apple Computer, Inc., 1999"
68
69
70#define kDCFireWireDVCodeVersion (kMajorRevisionNumber << 8 | kMinorRevisionNumber)
71
72
73
74#endif // __DCFIREWIREDVVERSIONANDREZIDS__ //
75