summaryrefslogtreecommitdiffstats
path: root/loader
diff options
context:
space:
mode:
Diffstat (limited to 'loader')
-rw-r--r--loader/qtx/qtxsdk/components.h15
1 files changed, 6 insertions, 9 deletions
diff --git a/loader/qtx/qtxsdk/components.h b/loader/qtx/qtxsdk/components.h
index edbe962752..911422c244 100644
--- a/loader/qtx/qtxsdk/components.h
+++ b/loader/qtx/qtxsdk/components.h
@@ -1,26 +1,23 @@
typedef long ComponentResult;
typedef unsigned char UInt8;
-struct ComponentParameters
-{
+typedef struct {
UInt8 flags;
UInt8 paramSize;
short what;
long params[1];
-};
+} ComponentParameters;
-struct ComponentInstace
-{
+typedef struct {
long data[1];
-};
+} ComponentInstace;
typedef int OSType;
-struct ComponentDescription
-{
+typedef struct {
OSType componentType;
OSType componentSubType;
OSType componentManufacturer;
unsigned long componentFlags;
unsigned long componentFlagsMask;
-};
+} ComponentDescription;