1/*
2	File:		Isoc.r
3
4	Contains:	xxx put contents here xxx
5
6	Version:	xxx put version here xxx
7
8	Written by:	Richard Sepulveda
9
10	Copyright:	� 1998-1999 by Apple Computer, Inc., all rights reserved.
11
12	File Ownership:
13
14		DRI:				xxx put dri here xxx
15
16		Other Contact:		xxx put other contact here xxx
17
18		Technology:			xxx put technology here xxx
19
20	Writers:
21
22		(jkl)	Jay Lloyd
23		(SW)	Sean Williams
24		(RS)	Richard Sepulveda
25
26	Change History (most recent first):
27
28		 <5>	 8/17/99	jkl		Added a little better ID's.
29		 <4>	 6/28/99	RS		Added unregister flag to component flags.
30	   <OX3>	 6/11/99	SW		MasterInterfaces integration
31		 <2>	 5/19/99	RS		Changed resource name from 'DVIS' to 'dvis' to be more
32									consistent with Apple resource names.
33	To Do:
34*/
35
36#define thng_RezTemplateVersion 1
37
38#include "Types.r"
39#include "Components.r"
40
41resource 'thng' (-20771, "DV_IHandler", locked) { //���
42	'ihlr',
43	'dv  ',
44	'appl',
45	0x80000000,
46	kAnyComponentFlagsMask,
47	'dvis',
48	-20771,	//���
49	'STR ',
50	0,
51	'STR ',
52	0,
53	'ICON',
54	0,
55
56	// extended thng resource info follows
57	(0 << 16) |												// component version
58	(0),
59	componentHasMultiplePlatforms  |						// Registration Flags
60		componentDoAutoVersion | componentWantsUnregister,	// More flags | componentWantsUnregister
61	0,														// icon family id
62	{
63		cmpWantsRegisterMessage,							// Register Flags
64		'dvis',												// Resource Type
65		-20771,	//���										// component code id
66		platformPowerPC										// platform type
67	}
68};
69