Mercurial > mplayer.hg
annotate loader/qtx/qtxsdk/components.h @ 2501:d12f90b7d773
devel
author | alex |
---|---|
date | Sat, 27 Oct 2001 17:45:27 +0000 |
parents | |
children | 6694f0d029f1 |
rev | line source |
---|---|
2501 | 1 typedef long ComponentResult; |
2 typedef unsigned char UInt8; | |
3 | |
4 struct ComponentParameters | |
5 { | |
6 UInt8 flags; | |
7 UInt8 paramSize; | |
8 short what; | |
9 long params[1]; | |
10 }; | |
11 | |
12 struct ComponentInstace | |
13 { | |
14 long data[1]; | |
15 }; | |
16 | |
17 typedef int OSType; | |
18 | |
19 struct ComponentDescription | |
20 { | |
21 OSType componentType; | |
22 OSType componentSubType; | |
23 OSType componentManufacturer; | |
24 unsigned long componentFlags; | |
25 unsigned long componentFlagsMask; | |
26 }; |