-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypes.h
More file actions
13988 lines (12779 loc) · 226 KB
/
types.h
File metadata and controls
13988 lines (12779 loc) · 226 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#pragma pack(push, 1)
#include <stdint.h>
// typedef long long int64_t;
// typedef int int32_t;
// typedef short int16_t;
// typedef char int8_t;
// typedef unsigned long long uint64_t;
// typedef unsigned int uint32_t;
// typedef unsigned short uint16_t;
// typedef unsigned char uint8_t;
typedef float vec2_t[2];
typedef float vec3_t[3];
typedef float vec4_t[4];
typedef float matrix4_t[16];
struct HFSUniStr255
{
uint16_t length;
uint8_t unicode[510];
};
struct FSRef
{
uint8_t hidden[80];
};
struct CFUUIDBytes
{
int8_t byte0;
int8_t byte1;
int8_t byte2;
int8_t byte3;
int8_t byte4;
int8_t byte5;
int8_t byte6;
int8_t byte7;
int8_t byte8;
int8_t byte9;
int8_t byte10;
int8_t byte11;
int8_t byte12;
int8_t byte13;
int8_t byte14;
int8_t byte15;
};
struct KeyStruct
{
uint8_t ignore0[64];
CFUUIDBytes uuid1;
int32_t ignore1;
char creatorName[64];
int32_t ignore2;
uint8_t creatorMachine[64];
uint8_t ignore3[32];
uint64_t dateCreated;
int32_t ignore4;
char gameName[64];
uint8_t ignore5[16];
int32_t gameCreator;
int32_t ignore6;
char playerName[64];
uint8_t ignore7[64];
char uuid2[16];
uint8_t ignore8[16];
int32_t checkSum;
uint8_t ignore9[512];
};
struct LSItemInfoRecord
{
uint32_t flags;
int32_t filetype;
int32_t creator;
int32_t extension;
char iconFileName[4];
uint32_t kindID;
};
struct AEDesc
{
char descriptorType[4];
uint32_t dataHandle;
};
struct CAEDesc
{
};
struct Point
{
int16_t v;
int16_t h;
};
struct MacRect
{
int16_t top;
int16_t left;
int16_t bottom;
int16_t right;
};
struct FSSpec
{
uint16_t vRefNum;
uint32_t parID;
char name[64];
};
struct CAEEvent
{
};
struct CAERecord
{
};
struct CAETarget
{
};
struct ProcessSerialNumber
{
int32_t highLongOfPSN;
int32_t lowLongOfPSN;
};
struct CAEObject
{
};
struct CGSize
{
uint32_t width;
int32_t height;
};
struct EventTypeSpec
{
int32_t eventClass;
int32_t eventKind;
};
struct ControlID
{
int32_t signature;
uint32_t id;
};
struct ControlEditTextSelectionRec
{
int16_t selStart;
uint16_t selEnd;
};
struct $_2251
{
void *menuRef;
uint16_t menuItemIndex;
};
struct HICommand
{
int32_t attributes;
char commandID[4];
$_2251 menu;
};
struct ControlKind
{
int32_t signature;
int32_t kind;
};
union TXNAttributeData
{
void *dataPtr;
int32_t dataValue;
int32_t atsuFeatures;
int32_t atsuVariations;
void *urlReference;
};
struct TXNTypeAttributes
{
int32_t tag;
uint32_t size;
TXNAttributeData data;
};
struct TXNATSUIFeatures
{
uint32_t featureCount;
int32_t featureTypes;
int32_t featureSelectors;
};
struct TXNATSUIVariations
{
uint32_t variationCount;
int32_t variationAxis;
int32_t variationValues;
};
struct MacRGBColor
{
int16_t red;
int16_t green;
int16_t blue;
};
struct ControlFontStyleRec
{
int16_t flags;
int16_t font;
uint16_t size;
int16_t style;
int16_t mode;
int16_t just;
MacRGBColor foreColor;
uint16_t backColor[3];
};
struct StShowCursor
{
int8_t mWasVisible;
};
struct GDevice
{
uint16_t gdRefNum;
uint16_t gdID;
int16_t gdType;
int32_t gdITable;
int16_t gdResPref;
int32_t gdSearchProc;
int32_t gdCompProc;
int16_t gdFlags;
int32_t gdPMap;
void *gdRefCon;
int32_t gdNextGD;
MacRect gdRect;
int32_t gdMode;
int16_t gdCCBytes;
int16_t gdCCDepth;
int32_t gdCCXData;
uint32_t gdCCXMask;
int32_t gdExt;
};
struct ITab
{
int32_t iTabSeed;
int16_t iTabRes;
int8_t iTTable;
};
struct SProcRec
{
int32_t nxtSrch;
int32_t srchProc;
};
struct CProcRec
{
int32_t nxtComp;
int32_t compProc;
};
struct PixMap
{
int32_t baseAddr;
int16_t rowBytes;
uint64_t bounds;
char pmVersion[2];
int16_t packType;
uint32_t packSize;
int32_t hRes;
int32_t vRes;
int16_t pixelType;
uint16_t pixelSize;
uint16_t cmpCount;
uint16_t cmpSize;
int32_t pixelFormat;
int32_t pmTable;
int32_t pmExt;
};
struct ColorTable
{
int32_t ctSeed;
int16_t ctFlags;
uint16_t ctSize;
uint64_t ctTable;
};
struct ColorSpec
{
int16_t value;
MacRGBColor rgb;
};
struct CGPoint
{
int32_t x;
int32_t y;
};
struct CGRect
{
CGPoint origin;
CGSize size;
};
struct OpaqueContextRef
{
char mContext[4];
int32_t mDrawable;
uint32_t mRendererID;
int8_t mDoubleBuffered;
};
struct CResInfo
{
uint32_t width;
int32_t height;
int32_t depth;
int32_t rate;
};
struct ComponentInstanceRecord
{
int32_t data;
};
struct ImageDescription
{
uint32_t idSize;
int32_t cType;
int32_t resvd1;
int16_t resvd2;
uint16_t dataRefIndex;
char version[2];
int16_t revisionLevel;
int32_t vendor;
int32_t temporalQuality;
int32_t spatialQuality;
uint16_t width;
int16_t height;
int32_t hRes;
int32_t vRes;
uint32_t dataSize;
uint16_t frameCount;
char name[32];
int16_t depth;
uint16_t clutID;
};
struct random_access_iterator_tag
{
};
struct bidirectional_iterator_tag
{
};
struct forward_iterator_tag
{
};
struct input_iterator_tag
{
};
struct D3DGAMMARAMP
{
uint8_t red[512];
uint8_t green[512];
uint8_t blue[512];
};
struct Vector_impl
{
int32_t _M_start;
int32_t _M_finish;
int32_t _M_end_of_storage;
};
struct false_type
{
};
struct Alloc_hider
{
int32_t _M_p;
};
struct Rep
{
};
struct Rep_base
{
uint32_t _M_length;
int32_t _M_capacity;
uint32_t _M_refcount;
};
typedef enum
{
kCGLNoError = 0,
kCGLBadAttribute = 10000,
kCGLBadProperty = 10001,
kCGLBadPixelFormat = 10002,
kCGLBadRendererInfo = 10003,
kCGLBadContext = 10004,
kCGLBadDrawable = 10005,
kCGLBadDisplay = 10006,
kCGLBadState = 10007,
kCGLBadValue = 10008,
kCGLBadMatch = 10009,
kCGLBadEnumeration = 10010,
kCGLBadOffScreen = 10011,
kCGLBadFullScreen = 10012,
kCGLBadWindow = 10013,
kCGLBadAddress = 10014,
kCGLBadCodeModule = 10015,
kCGLBadAlloc = 10016,
kCGLBadConnection = 10017
} CGLError;
typedef enum
{
kCGLPFAAllRenderers = 1,
kCGLPFADoubleBuffer = 5,
kCGLPFAStereo = 6,
kCGLPFAAuxBuffers = 7,
kCGLPFAColorSize = 8,
kCGLPFAAlphaSize = 11,
kCGLPFADepthSize = 12,
kCGLPFAStencilSize = 13,
kCGLPFAAccumSize = 14,
kCGLPFAMinimumPolicy = 51,
kCGLPFAMaximumPolicy = 52,
kCGLPFAOffScreen = 53,
kCGLPFAFullScreen = 54,
kCGLPFASampleBuffers = 55,
kCGLPFASamples = 56,
kCGLPFAAuxDepthStencil = 57,
kCGLPFAColorFloat = 58,
kCGLPFAMultisample = 59,
kCGLPFASupersample = 60,
kCGLPFASampleAlpha = 61,
kCGLPFARendererID = 70,
kCGLPFASingleRenderer = 71,
kCGLPFANoRecovery = 72,
kCGLPFAAccelerated = 73,
kCGLPFAClosestPolicy = 74,
kCGLPFARobust = 75,
kCGLPFABackingStore = 76,
kCGLPFAMPSafe = 78,
kCGLPFAWindow = 80,
kCGLPFAMultiScreen = 81,
kCGLPFACompliant = 83,
kCGLPFADisplayMask = 84,
kCGLPFAPBuffer = 90,
kCGLPFARemotePBuffer = 91,
kCGLPFAVirtualScreenCount = 128
} CGLPixelFormatAttribute;
struct FSCatalogInfo
{
int16_t nodeFlags;
int16_t volume;
uint32_t parentDirID;
uint32_t nodeID;
int8_t sharingFlags;
int8_t userPrivileges;
int8_t reserved1;
int8_t reserved2;
uint64_t createDate;
uint64_t contentModDate;
uint64_t attributeModDate;
uint64_t accessDate;
uint64_t backupDate;
uint8_t permissions[16];
char finderInfo[16];
char extFinderInfo[16];
vec2_t dataLogicalSize;
vec2_t dataPhysicalSize;
vec2_t rsrcLogicalSize;
vec2_t rsrcPhysicalSize;
uint32_t valence;
char textEncodingHint[4];
};
struct RemoveDirectoryInfo
{
int32_t error;
int32_t actualObjects;
FSCatalogInfo catalogInfo;
};
struct UTCDateTime
{
int16_t highSeconds;
int32_t lowSeconds;
int16_t fraction;
};
struct CMMapFile
{
void *mFileRef;
uint32_t mFileSize;
void *mMemRef;
};
struct sFILE
{
int32_t _p;
int32_t _r;
int32_t _w;
int16_t _flags;
int16_t _file;
uint64_t _bf;
uint32_t _lbfsize;
int32_t _cookie;
int32_t _close;
int32_t _read;
int32_t _seek;
int32_t _write;
uint64_t _ub;
int32_t _extra;
int32_t _ur;
uint8_t _ubuf[3];
int8_t _nbuf;
uint64_t _lb;
uint32_t _blksize;
vec2_t _offset;
};
struct sbuf
{
int32_t _base;
uint32_t _size;
};
struct timespec
{
int32_t tv_sec;
int32_t tv_nsec;
};
struct stat
{
int32_t st_dev;
int32_t st_ino;
int16_t st_mode;
int16_t st_nlink;
uint32_t st_uid;
uint32_t st_gid;
int32_t st_rdev;
timespec st_atimespec;
char st_mtimespec[8];
char st_ctimespec[8];
vec2_t st_size;
uint64_t st_blocks;
uint32_t st_blksize;
uint32_t st_flags;
int32_t st_gen;
int32_t st_lspare;
uint8_t st_qspare[16];
};
struct DInfo
{
uint64_t frRect;
int16_t frFlags;
int32_t frLocation;
int16_t frView;
};
struct DXInfo
{
int32_t frScroll;
int32_t frOpenChain;
int8_t frScript;
int8_t frXFlags;
int16_t frComment;
int32_t frPutAway;
};
struct DirInfo
{
int32_t qLink;
int16_t qType;
int16_t ioTrap;
char ioCmdAddr[4];
int32_t ioCompletion;
int16_t ioResult;
char ioNamePtr[4];
uint16_t ioVRefNum;
uint16_t ioFRefNum;
uint8_t ioFVersNum;
int8_t filler1;
uint16_t ioFDirIndex;
int8_t ioFlAttrib;
int8_t ioACUser;
DInfo ioDrUsrWds;
uint32_t ioDrDirID;
int16_t ioDrNmFls;
uint8_t filler3[18];
int32_t ioDrCrDat;
int32_t ioDrMdDat;
int32_t ioDrBkDat;
DXInfo ioDrFndrInfo;
uint32_t ioDrParID;
};
struct FXInfo
{
uint16_t fdIconID;
uint8_t fdReserved[6];
int8_t fdScript;
int8_t fdXFlags;
int16_t fdComment;
int32_t fdPutAway;
};
struct HFileInfo
{
int32_t qLink;
int16_t qType;
int16_t ioTrap;
char ioCmdAddr[4];
int32_t ioCompletion;
int16_t ioResult;
char ioNamePtr[4];
uint16_t ioVRefNum;
uint16_t ioFRefNum;
uint8_t ioFVersNum;
int8_t filler1;
uint16_t ioFDirIndex;
int8_t ioFlAttrib;
int8_t ioACUser;
char ioFlFndrInfo[16];
uint32_t ioDirID;
int16_t ioFlStBlk;
uint32_t ioFlLgLen;
uint32_t ioFlPyLen;
int16_t ioFlRStBlk;
uint32_t ioFlRLgLen;
uint32_t ioFlRPyLen;
int32_t ioFlCrDat;
int32_t ioFlMdDat;
int32_t ioFlBkDat;
FXInfo ioFlXFndrInfo;
uint32_t ioFlParID;
int32_t ioFlClpSiz;
};
union CInfoPBRec
{
HFileInfo hFileInfo;
DirInfo dirInfo;
};
struct FInfo
{
int32_t fdType;
int32_t fdCreator;
int16_t fdFlags;
int32_t fdLocation;
int16_t fdFldr;
};
struct QElem
{
int32_t qLink;
int16_t qType;
int16_t qData;
};
struct MacImageInfo
{
uint16_t width;
int16_t height;
int32_t rowBytes;
int32_t data;
};
struct CMacLogFile
{
int32_t mFile;
};
struct StPortState
{
int32_t mSavedPort;
};
struct StGWorldState
{
int32_t mSavedPort;
int32_t mSavedDevice;
};
struct StSetDirectory
{
uint16_t mSavedVRefNum;
char pad0[2];
uint32_t mSavedDirID;
int8_t mSavedIsValid;
};
struct Cursor
{
uint8_t data[32];
uint8_t mask[32];
Point hotSpot;
};
struct EventRecord
{
int16_t what;
char message[4];
int32_t when;
int32_t where;
int16_t modifiers;
};
struct FSVolumeInfo
{
UTCDateTime createDate;
uint64_t modifyDate;
uint64_t backupDate;
uint64_t checkedDate;
uint32_t fileCount;
uint32_t folderCount;
uint64_t totalBytes;
uint64_t freeBytes;
uint32_t blockSize;
int32_t totalBlocks;
int32_t freeBlocks;
int32_t nextAllocation;
uint32_t rsrcClumpSize;
uint32_t dataClumpSize;
uint32_t nextCatalogID;
char finderInfo[32];
int16_t flags;
uint16_t filesystemID;
int16_t signature;
uint16_t driveNumber;
char driverRefNum[2];
};
typedef enum
{
kCFCompareLessThan = -1,
kCFCompareEqualTo = 0,
kCFCompareGreaterThan = 1
} $_18;
struct GetVolParmsInfoBuffer
{
char vMVersion[2];
int32_t vMAttrib;
int32_t vMLocalHand;
int32_t vMServerAdr;
int32_t vMVolumeGrade;
uint16_t vMForeignPrivID;
int32_t vMExtendedAttributes;
uint32_t vMDeviceID;
char vMMaxNameLength[4];
};
struct HVolumeParam
{
int32_t qLink;
int16_t qType;
int16_t ioTrap;
char ioCmdAddr[4];
int32_t ioCompletion;
int16_t ioResult;
char ioNamePtr[4];
uint16_t ioVRefNum;
int32_t filler2;
uint16_t ioVolIndex;
int32_t ioVCrDate;
int32_t ioVLsMod;
int16_t ioVAtrb;
int16_t ioVNmFls;
int16_t ioVBitMap;
int16_t ioAllocPtr;
int16_t ioVNmAlBlks;
int32_t ioVAlBlkSiz;
int32_t ioVClpSiz;
int16_t ioAlBlSt;
uint32_t ioVNxtCNID;
int16_t ioVFrBlk;
int16_t ioVSigWord;
char ioVDrvInfo[2];
uint16_t ioVDRefNum;
uint16_t ioVFSID;
int32_t ioVBkUp;
uint16_t ioVSeqNum;
int32_t ioVWrCnt;
int32_t ioVFilCnt;
int32_t ioVDirCnt;
char ioVFndrInfo[32];
};
struct CatPositionRec
{
int32_t initialize;
vec3_t priv;
};
struct CSParam
{
int32_t qLink;
int16_t qType;
int16_t ioTrap;
char ioCmdAddr[4];
int32_t ioCompletion;
int16_t ioResult;
char ioNamePtr[4];
uint16_t ioVRefNum;
void *ioMatchPtr;
uint32_t ioReqMatchCount;
uint32_t ioActMatchCount;
int32_t ioSearchBits;
char ioSearchInfo1[4];
char ioSearchInfo2[4];
uint32_t ioSearchTime;
CatPositionRec ioCatPosition;
void *ioOptBuffer;
uint32_t ioOptBufSize;
};
struct ForeignPrivParam
{
int32_t qLink;
int16_t qType;
int16_t ioTrap;
char ioCmdAddr[4];
int32_t ioCompletion;
int16_t ioResult;
char ioNamePtr[4];
uint16_t ioVRefNum;
int32_t ioFiller21;
int32_t ioFiller22;
void *ioForeignPrivBuffer;
uint32_t ioForeignPrivActCount;
uint32_t ioForeignPrivReqCount;
int32_t ioFiller23;
uint32_t ioForeignPrivDirID;
char ioForeignPrivInfo1[4];
char ioForeignPrivInfo2[4];
char ioForeignPrivInfo3[4];
char ioForeignPrivInfo4[4];
};
struct HIOParam
{
int32_t qLink;
int16_t qType;
int16_t ioTrap;
char ioCmdAddr[4];
int32_t ioCompletion;
int16_t ioResult;
char ioNamePtr[4];
uint16_t ioVRefNum;
uint16_t ioRefNum;
uint8_t ioVersNum;
int8_t ioPermssn;
int32_t ioMisc;
void *ioBuffer;
uint32_t ioReqCount;
uint32_t ioActCount;
uint16_t ioPosMode;
uint32_t ioPosOffset;
};
struct WDParam
{
int32_t qLink;
int16_t qType;
int16_t ioTrap;
char ioCmdAddr[4];
int32_t ioCompletion;
int16_t ioResult;
char ioNamePtr[4];
uint16_t ioVRefNum;
int16_t ioWDCreated;
uint16_t ioWDIndex;
uint32_t ioWDProcID;
uint16_t ioWDVRefNum;
int16_t filler10;
int32_t filler11;
int32_t filler12;
int32_t filler13;
uint32_t ioWDDirID;
};
struct CopyParam
{
int32_t qLink;
int16_t qType;
int16_t ioTrap;
char ioCmdAddr[4];
int32_t ioCompletion;
int16_t ioResult;
char ioNamePtr[4];
uint16_t ioVRefNum;
uint16_t ioDstVRefNum;
int16_t filler8;
char ioNewName[4];
char ioCopyName[4];
uint32_t ioNewDirID;
int32_t filler14;
int32_t filler15;
uint32_t ioDirID;
};
struct AccessParam
{
int32_t qLink;
int16_t qType;
int16_t ioTrap;
char ioCmdAddr[4];
int32_t ioCompletion;
int16_t ioResult;
char ioNamePtr[4];
uint16_t ioVRefNum;
uint16_t ioRefNum;
int16_t ioDenyModes;
int16_t filler4;
int8_t filler5;
int8_t ioACUser;
int32_t filler6;
uint32_t ioACOwnerID;
uint32_t ioACGroupID;
int32_t ioACAccess;
uint32_t ioDirID;
};
struct FIDParam
{
int32_t qLink;
int16_t qType;
int16_t ioTrap;
char ioCmdAddr[4];
int32_t ioCompletion;
int16_t ioResult;
char ioNamePtr[4];
uint16_t ioVRefNum;
int32_t filler14;
char ioDestNamePtr[4];
int32_t filler15;
uint32_t ioDestDirID;
int32_t filler16;
int32_t filler17;
uint32_t ioSrcDirID;
int16_t filler18;
uint32_t ioFileID;
};
struct HFileParam
{
int32_t qLink;
int16_t qType;
int16_t ioTrap;
char ioCmdAddr[4];
int32_t ioCompletion;
int16_t ioResult;
char ioNamePtr[4];
uint16_t ioVRefNum;
uint16_t ioFRefNum;
uint8_t ioFVersNum;
int8_t filler1;
uint16_t ioFDirIndex;
int8_t ioFlAttrib;
uint8_t ioFlVersNum;
FInfo ioFlFndrInfo;
uint32_t ioDirID;
int16_t ioFlStBlk;
uint32_t ioFlLgLen;
uint32_t ioFlPyLen;
int16_t ioFlRStBlk;
uint32_t ioFlRLgLen;
uint32_t ioFlRPyLen;
int32_t ioFlCrDat;
int32_t ioFlMdDat;
};
struct ObjParam