summaryrefslogtreecommitdiffstats
path: root/loader/qtx
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-11-09 03:26:12 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-11-09 03:26:12 +0000
commitc90a2e3c66739a1c197e61875eb913c3c818d40c (patch)
treed8dcb17eb00683627d9d7d9d9c82ecdfa61c55af /loader/qtx
parent0afb7c93318632543a207db4b27c0882ed680435 (diff)
downloadmpv-c90a2e3c66739a1c197e61875eb913c3c818d40c.tar.bz2
mpv-c90a2e3c66739a1c197e61875eb913c3c818d40c.tar.xz
struct->typedef
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2777 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'loader/qtx')
-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;