2501
|
1 typedef long ComponentResult;
|
|
2 typedef unsigned char UInt8;
|
|
3
|
2776
|
4 typedef struct {
|
2501
|
5 UInt8 flags;
|
|
6 UInt8 paramSize;
|
|
7 short what;
|
|
8 long params[1];
|
2776
|
9 } ComponentParameters;
|
2501
|
10
|
2776
|
11 typedef struct {
|
2501
|
12 long data[1];
|
2776
|
13 } ComponentInstace;
|
2501
|
14
|
|
15 typedef int OSType;
|
|
16
|
2776
|
17 typedef struct {
|
2501
|
18 OSType componentType;
|
|
19 OSType componentSubType;
|
|
20 OSType componentManufacturer;
|
|
21 unsigned long componentFlags;
|
|
22 unsigned long componentFlagsMask;
|
2776
|
23 } ComponentDescription;
|