summaryrefslogtreecommitdiffstats
path: root/loader/qtx/qtxsdk/components.h
blob: edbe9627522bd20463d55026ef4be407e8d4fdd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
typedef long ComponentResult;
typedef unsigned char UInt8;

struct ComponentParameters
{
    UInt8	flags;
    UInt8	paramSize;
    short	what;
    long	params[1];
};

struct ComponentInstace
{
    long	data[1];
};

typedef int OSType;

struct ComponentDescription
{
    OSType	componentType;
    OSType	componentSubType;
    OSType	componentManufacturer;
    unsigned long componentFlags;
    unsigned long componentFlagsMask;
};