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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
|
/*
File: Displays.h
Contains: Display Manager Interfaces.
Version: QuickTime 7.3
Copyright: (c) 2007 (c) 1993-2001 by Apple Computer, Inc., all rights reserved.
Bugs?: For bug reports, consult the following page on
the World Wide Web:
http://developer.apple.com/bugreporter/
*/
#ifndef __DISPLAYS__
#define __DISPLAYS__
#ifndef __CONDITIONALMACROS__
#include <ConditionalMacros.h>
#endif
#ifndef __COMPONENTS__
#include <Components.h>
#endif
#ifndef __VIDEO__
#include <Video.h>
#endif
#ifndef __CMAPPLICATION__
#include <CMApplication.h>
#endif
#ifndef __APPLEEVENTS__
#include <AppleEvents.h>
#endif
#if PRAGMA_ONCE
#pragma once
#endif
#ifdef __cplusplus
extern "C" {
#endif
#if PRAGMA_IMPORT
#pragma import on
#endif
#if PRAGMA_STRUCT_ALIGN
#pragma options align=mac68k
#elif PRAGMA_STRUCT_PACKPUSH
#pragma pack(push, 2)
#elif PRAGMA_STRUCT_PACK
#pragma pack(2)
#endif
typedef void * DMProcessInfoPtr;
typedef void * DMModalFilterUPP;
enum {
/* AppleEvents Core Suite */
kAESystemConfigNotice = FOUR_CHAR_CODE('cnfg'), /* Core Suite types */
kAEDisplayNotice = FOUR_CHAR_CODE('dspl'),
kAEDisplaySummary = FOUR_CHAR_CODE('dsum'),
keyDMConfigVersion = FOUR_CHAR_CODE('dmcv'),
keyDMConfigFlags = FOUR_CHAR_CODE('dmcf'),
keyDMConfigReserved = FOUR_CHAR_CODE('dmcr'),
keyDisplayID = FOUR_CHAR_CODE('dmid'),
keyDisplayComponent = FOUR_CHAR_CODE('dmdc'),
keyDisplayDevice = FOUR_CHAR_CODE('dmdd'),
keyDisplayFlags = FOUR_CHAR_CODE('dmdf'),
keyDisplayMode = FOUR_CHAR_CODE('dmdm'),
keyDisplayModeReserved = FOUR_CHAR_CODE('dmmr'),
keyDisplayReserved = FOUR_CHAR_CODE('dmdr'),
keyDisplayMirroredId = FOUR_CHAR_CODE('dmmi'),
keyDeviceFlags = FOUR_CHAR_CODE('dddf'),
keyDeviceDepthMode = FOUR_CHAR_CODE('dddm'),
keyDeviceRect = FOUR_CHAR_CODE('dddr'),
keyPixMapRect = FOUR_CHAR_CODE('dpdr'),
keyPixMapHResolution = FOUR_CHAR_CODE('dphr'),
keyPixMapVResolution = FOUR_CHAR_CODE('dpvr'),
keyPixMapPixelType = FOUR_CHAR_CODE('dppt'),
keyPixMapPixelSize = FOUR_CHAR_CODE('dpps'),
keyPixMapCmpCount = FOUR_CHAR_CODE('dpcc'),
keyPixMapCmpSize = FOUR_CHAR_CODE('dpcs'),
keyPixMapAlignment = FOUR_CHAR_CODE('dppa'),
keyPixMapResReserved = FOUR_CHAR_CODE('dprr'),
keyPixMapReserved = FOUR_CHAR_CODE('dppr'),
keyPixMapColorTableSeed = FOUR_CHAR_CODE('dpct'),
keySummaryMenubar = FOUR_CHAR_CODE('dsmb'),
keySummaryChanges = FOUR_CHAR_CODE('dsch'),
keyDisplayOldConfig = FOUR_CHAR_CODE('dold'),
keyDisplayNewConfig = FOUR_CHAR_CODE('dnew')
};
enum {
dmOnlyActiveDisplays = true,
dmAllDisplays = false
};
enum {
/* DMSendDependentNotification notifyClass */
kDependentNotifyClassShowCursor = FOUR_CHAR_CODE('shcr'), /* When display mgr shows a hidden cursor during an unmirror */
kDependentNotifyClassDriverOverride = FOUR_CHAR_CODE('ndrv'), /* When a driver is overridden */
kDependentNotifyClassDisplayMgrOverride = FOUR_CHAR_CODE('dmgr'), /* When display manager is upgraded */
kDependentNotifyClassProfileChanged = FOUR_CHAR_CODE('prof') /* When DMSetProfileByAVID is called */
};
enum {
/* Switch Flags */
kNoSwitchConfirmBit = 0, /* Flag indicating that there is no need to confirm a switch to this mode */
kDepthNotAvailableBit = 1, /* Current depth not available in new mode */
kShowModeBit = 3, /* Show this mode even though it requires a confirm. */
kModeNotResizeBit = 4, /* Do not use this mode to resize display (for cards that mode drives a different connector). */
kNeverShowModeBit = 5 /* This mode should not be shown in the user interface. */
};
/* Summary Change Flags (sticky bits indicating an operation was performed)
For example, moving a display then moving it back will still set the kMovedDisplayBit.
*/
enum {
kBeginEndConfigureBit = 0,
kMovedDisplayBit = 1,
kSetMainDisplayBit = 2,
kSetDisplayModeBit = 3,
kAddDisplayBit = 4,
kRemoveDisplayBit = 5,
kNewDisplayBit = 6,
kDisposeDisplayBit = 7,
kEnabledDisplayBit = 8,
kDisabledDisplayBit = 9,
kMirrorDisplayBit = 10,
kUnMirrorDisplayBit = 11
};
enum {
/* Notification Messages for extended call back routines */
kDMNotifyRequestConnectionProbe = 0, /* Like kDMNotifyRequestDisplayProbe only not for smart displays (used in wake before all busses are awake) */
kDMNotifyInstalled = 1, /* At install time */
kDMNotifyEvent = 2, /* Post change time */
kDMNotifyRemoved = 3, /* At remove time */
kDMNotifyPrep = 4, /* Pre change time */
kDMNotifyExtendEvent = 5, /* Allow registrees to extend apple event before it is sent */
kDMNotifyDependents = 6, /* Minor notification check without full update */
kDMNotifySuspendConfigure = 7, /* Temporary end of configuration */
kDMNotifyResumeConfigure = 8, /* Resume configuration */
kDMNotifyRequestDisplayProbe = 9, /* Request smart displays re-probe (used in sleep and hot plugging) */
kDMNotifyDisplayWillSleep = 10, /* Mac OS X only */
kDMNotifyDisplayDidWake = 11, /* Mac OS X only */
/* Notification Flags */
kExtendedNotificationProc = (1L << 16)
};
/* types for notifyType */
enum {
kFullNotify = 0, /* This is the appleevent whole nine yards notify */
kFullDependencyNotify = 1 /* Only sends to those who want to know about interrelated functionality (used for updating UI) */
};
/* DisplayID/DeviceID constants */
enum {
kDummyDeviceID = 0x00FF, /* This is the ID of the dummy display, used when the last "real" display is disabled.*/
kInvalidDisplayID = 0x0000, /* This is the invalid ID*/
kFirstDisplayID = 0x0100
};
enum {
/* bits for panelListFlags */
kAllowDuplicatesBit = 0
};
enum {
/* bits for nameFlags */
kSuppressNumberBit = 0,
kSuppressNumberMask = 1,
kForceNumberBit = 1,
kForceNumberMask = 2,
kSuppressNameBit = 2,
kSuppressNameMask = 4
};
/* DMGetNameByAVID masks*/
enum {
kDMSupressNumbersMask = (1 << 0), /* Supress the numbers and return only names*/
kDMForceNumbersMask = (1 << 1), /* Force numbers to always be shown (even on single display configs)*/
kDMSupressNameMask = (1 << 2) /* Supress the names and return only numbers.*/
};
/* Constants for fidelity checks */
enum {
kNoFidelity = 0,
kMinimumFidelity = 1,
kDefaultFidelity = 500, /* I'm just picking a number for Apple default panels and engines*/
kDefaultManufacturerFidelity = 1000 /* I'm just picking a number for Manufacturer's panels and engines (overrides apple defaults)*/
};
enum {
kAnyPanelType = 0, /* Pass to DMNewEngineList for list of all panels (as opposed to specific types)*/
kAnyEngineType = 0, /* Pass to DMNewEngineList for list of all engines*/
kAnyDeviceType = 0, /* Pass to DMNewDeviceList for list of all devices*/
kAnyPortType = 0 /* Pass to DMNewDevicePortList for list of all devices*/
};
/* portListFlags for DM_NewDevicePortList */
enum {
/* Should offline devices be put into the port list (such as dummy display) */
kPLIncludeOfflineDevicesBit = 0
};
/* confirmFlags for DMConfirmConfiguration */
enum {
kForceConfirmBit = 0, /* Force a confirm dialog */
kForceConfirmMask = (1 << kForceConfirmBit)
};
/* Flags for displayModeFlags */
enum {
kDisplayModeListNotPreferredBit = 0,
kDisplayModeListNotPreferredMask = (1 << kDisplayModeListNotPreferredBit)
};
/* Flags for itemFlags */
enum {
kComponentListNotPreferredBit = 0,
kComponentListNotPreferredMask = (1 << kComponentListNotPreferredBit)
};
enum {
kDisplayTimingInfoVersionZero = 1,
kDisplayTimingInfoReservedCountVersionZero = 16,
kDisplayModeEntryVersionZero = 0, /* displayModeVersion - original version*/
kDisplayModeEntryVersionOne = 1 /* displayModeVersion - added displayModeOverrideInfo*/
};
enum {
kMakeAndModelReservedCount = 4 /* Number of reserved fields*/
};
/* Display Gestalt for DMDisplayGestalt*/
enum {
kDisplayGestaltDisplayCommunicationAttr = FOUR_CHAR_CODE('comm'),
kDisplayGestaltForbidI2CMask = (1 << 0), /* Some displays have firmware problems if they get I2C communication. If this bit is set, then I2C communication is forbidden*/
kDisplayGestaltUseI2CPowerMask = (1 << 1), /* Some displays require I2C power settings (most use DPMS).*/
kDisplayGestaltCalibratorAttr = FOUR_CHAR_CODE('cali'),
kDisplayGestaltBrightnessAffectsGammaMask = (1 << 0), /* Used by default calibrator (should we show brightness panel) */
kDisplayGestaltViewAngleAffectsGammaMask = (1 << 1) /* Currently not used by color sync*/
};
typedef UInt32 DMFidelityType;
/*
AVID is an ID for ports and devices the old DisplayID type
is carried on for compatibility
*/
typedef void * DMListType;
typedef unsigned long DMListIndexType;
typedef VDPowerStateRec AVPowerStateRec;
typedef VDPowerStateRec * AVPowerStatePtr;
struct DMDisplayTimingInfoRec {
UInt32 timingInfoVersion;
UInt32 timingInfoAttributes; /* Flags */
SInt32 timingInfoRelativeQuality; /* quality of the timing */
SInt32 timingInfoRelativeDefault; /* relative default of the timing */
UInt32 timingInfoReserved[16]; /* Reserved */
};
typedef struct DMDisplayTimingInfoRec DMDisplayTimingInfoRec;
typedef DMDisplayTimingInfoRec * DMDisplayTimingInfoPtr;
struct DMComponentListEntryRec {
DisplayIDType itemID; /* DisplayID Manager*/
Component itemComponent; /* Component Manager*/
ComponentDescription itemDescription; /* We can always construct this if we use something beyond the compontent mgr.*/
ResType itemClass; /* Class of group to put this panel (eg geometry/color/etc for panels, brightness/contrast for engines, video out/sound/etc for devices)*/
DMFidelityType itemFidelity; /* How good is this item for the specified search?*/
ResType itemSubClass; /* Subclass of group to put this panel. Can use to do sub-grouping (eg volume for volume panel and mute panel)*/
Point itemSort; /* Set to 0 - future to sort the items in a sub group.*/
unsigned long itemFlags; /* Set to 0 (future expansion)*/
ResType itemReserved; /* What kind of code does the itemReference point to (right now - kPanelEntryTypeComponentMgr only)*/
unsigned long itemFuture1; /* Set to 0 (future expansion - probably an alternate code style)*/
unsigned long itemFuture2; /* Set to 0 (future expansion - probably an alternate code style)*/
unsigned long itemFuture3; /* Set to 0 (future expansion - probably an alternate code style)*/
unsigned long itemFuture4; /* Set to 0 (future expansion - probably an alternate code style)*/
};
typedef struct DMComponentListEntryRec DMComponentListEntryRec;
typedef DMComponentListEntryRec * DMComponentListEntryPtr;
/* ooo Move AVLocationRec to AVComponents.i AFTER AVComponents.i is created*/
struct AVLocationRec {
unsigned long locationConstant; /* Set to 0 (future expansion - probably an alternate code style)*/
};
typedef struct AVLocationRec AVLocationRec;
typedef AVLocationRec * AVLocationPtr;
struct DMDepthInfoRec {
VDSwitchInfoPtr depthSwitchInfo; /* This is the switch mode to choose this timing/depth */
VPBlockPtr depthVPBlock; /* VPBlock (including size, depth and format) */
UInt32 depthFlags; /* VDVideoParametersInfoRec.csDepthFlags */
UInt32 depthReserved1; /* Reserved */
UInt32 depthReserved2; /* Reserved */
};
typedef struct DMDepthInfoRec DMDepthInfoRec;
typedef DMDepthInfoRec * DMDepthInfoPtr;
struct DMDepthInfoBlockRec {
unsigned long depthBlockCount; /* How many depths are there? */
DMDepthInfoPtr depthVPBlock; /* Array of DMDepthInfoRec */
unsigned long depthBlockFlags; /* Reserved */
unsigned long depthBlockReserved1; /* Reserved */
unsigned long depthBlockReserved2; /* Reserved */
};
typedef struct DMDepthInfoBlockRec DMDepthInfoBlockRec;
typedef DMDepthInfoBlockRec * DMDepthInfoBlockPtr;
struct DMDisplayModeListEntryRec {
UInt32 displayModeFlags;
VDSwitchInfoPtr displayModeSwitchInfo;
VDResolutionInfoPtr displayModeResolutionInfo;
VDTimingInfoPtr displayModeTimingInfo;
DMDepthInfoBlockPtr displayModeDepthBlockInfo; /* Information about all the depths*/
UInt32 displayModeVersion; /* What version is this record (now kDisplayModeEntryVersionOne)*/
StringPtr displayModeName; /* Name of the timing mode*/
DMDisplayTimingInfoPtr displayModeDisplayInfo; /* Information from the display.*/
};
typedef struct DMDisplayModeListEntryRec DMDisplayModeListEntryRec;
typedef DMDisplayModeListEntryRec * DMDisplayModeListEntryPtr;
struct DependentNotifyRec {
ResType notifyType; /* What type was the engine that made the change (may be zero)*/
ResType notifyClass; /* What class was the change (eg geometry, color etc)*/
DisplayIDType notifyPortID; /* Which device was touched (kInvalidDisplayID -> all or none)*/
ComponentInstance notifyComponent; /* What engine did it (may be 0)?*/
unsigned long notifyVersion; /* Set to 0 (future expansion)*/
unsigned long notifyFlags; /* Set to 0 (future expansion)*/
unsigned long notifyReserved; /* Set to 0 (future expansion)*/
unsigned long notifyFuture; /* Set to 0 (future expansion)*/
};
typedef struct DependentNotifyRec DependentNotifyRec;
typedef DependentNotifyRec * DependentNotifyPtr;
struct DMMakeAndModelRec {
ResType manufacturer;
UInt32 model;
UInt32 serialNumber;
UInt32 manufactureDate;
UInt32 makeReserved[4];
};
typedef struct DMMakeAndModelRec DMMakeAndModelRec;
typedef DMMakeAndModelRec * DMMakeAndModelPtr;
/* DMNewDisplayList displayListIncludeFlags*/
enum {
kIncludeOnlineActiveDisplaysMask = (1 << 0),
kIncludeOnlineDisabledDisplaysMask = (1 << 1),
kIncludeOfflineDisplaysMask = (1 << 2),
kIncludeOfflineDummyDisplaysMask = (1 << 3),
kIncludeHardwareMirroredDisplaysMask = (1 << 4)
};
enum {
/* modeListFlags for DMNewDisplayModeList */
kDMModeListIncludeAllModesMask = (1 << 0), /* Include all timing modes not _explicitly_ excluded (see other bits)*/
kDMModeListIncludeOfflineModesMask = (1 << 1),
kDMModeListExcludeDriverModesMask = (1 << 2), /* Exclude old-style timing modes (cscGetNextResolution/kDisplayModeIDFindFirstResolution modes)*/
kDMModeListExcludeDisplayModesMask = (1 << 3), /* Exclude timing modes that come from the display (always arbritrary timing modes)*/
kDMModeListExcludeCustomModesMask = (1 << 4), /* Exclude custom modes that came neither from the driver or display (need a better name)*/
kDMModeListPreferStretchedModesMask = (1 << 5), /* Prefer modes that are stretched over modes that are letterboxed when setting kDisplayModeListNotPreferredBit*/
kDMModeListPreferSafeModesMask = (1 << 6) /* Prefer modes that are safe over modes that are not when setting kDisplayModeListNotPreferredBit*/
};
/* DMNewDisplayList displayListFlags*/
struct DisplayListEntryRec {
GDHandle displayListEntryGDevice;
DisplayIDType displayListEntryDisplayID;
UInt32 displayListEntryIncludeFlags; /* Reason this entry was included*/
UInt32 displayListEntryReserved1;
UInt32 displayListEntryReserved2; /* Zero*/
UInt32 displayListEntryReserved3; /* Zero*/
UInt32 displayListEntryReserved4; /* Zero*/
UInt32 displayListEntryReserved5; /* Zero*/
};
typedef struct DisplayListEntryRec DisplayListEntryRec;
typedef DisplayListEntryRec * DisplayListEntryPtr;
struct DMProfileListEntryRec {
CMProfileRef profileRef;
Ptr profileReserved1; /* Reserved*/
Ptr profileReserved2; /* Reserved*/
Ptr profileReserved3; /* Reserved*/
};
typedef struct DMProfileListEntryRec DMProfileListEntryRec;
typedef DMProfileListEntryRec * DMProfileListEntryPtr;
typedef CALLBACK_API( void , DMNotificationProcPtr )(AppleEvent * theEvent);
typedef CALLBACK_API( void , DMExtendedNotificationProcPtr )(void *userData, short theMessage, void *notifyData);
typedef CALLBACK_API( void , DMComponentListIteratorProcPtr )(void *userData, DMListIndexType itemIndex, DMComponentListEntryPtr componentInfo);
typedef CALLBACK_API( void , DMDisplayModeListIteratorProcPtr )(void *userData, DMListIndexType itemIndex, DMDisplayModeListEntryPtr displaymodeInfo);
typedef CALLBACK_API( void , DMProfileListIteratorProcPtr )(void *userData, DMListIndexType itemIndex, DMProfileListEntryPtr profileInfo);
typedef CALLBACK_API( void , DMDisplayListIteratorProcPtr )(void *userData, DMListIndexType itemIndex, DisplayListEntryPtr displaymodeInfo);
typedef STACK_UPP_TYPE(DMNotificationProcPtr) DMNotificationUPP;
typedef STACK_UPP_TYPE(DMExtendedNotificationProcPtr) DMExtendedNotificationUPP;
typedef STACK_UPP_TYPE(DMComponentListIteratorProcPtr) DMComponentListIteratorUPP;
typedef STACK_UPP_TYPE(DMDisplayModeListIteratorProcPtr) DMDisplayModeListIteratorUPP;
typedef STACK_UPP_TYPE(DMProfileListIteratorProcPtr) DMProfileListIteratorUPP;
typedef STACK_UPP_TYPE(DMDisplayListIteratorProcPtr) DMDisplayListIteratorUPP;
/*
* NewDMNotificationUPP()
*
* Availability:
* Non-Carbon CFM: available as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( DMNotificationUPP )
NewDMNotificationUPP(DMNotificationProcPtr userRoutine);
#if !OPAQUE_UPP_TYPES
enum { uppDMNotificationProcInfo = 0x000000C0 }; /* pascal no_return_value Func(4_bytes) */
#ifdef __cplusplus
inline DEFINE_API_C(DMNotificationUPP) NewDMNotificationUPP(DMNotificationProcPtr userRoutine) { return (DMNotificationUPP)NewRoutineDescriptor((ProcPtr)(userRoutine), uppDMNotificationProcInfo, GetCurrentArchitecture()); }
#else
#define NewDMNotificationUPP(userRoutine) (DMNotificationUPP)NewRoutineDescriptor((ProcPtr)(userRoutine), uppDMNotificationProcInfo, GetCurrentArchitecture())
#endif
#endif
/*
* NewDMExtendedNotificationUPP()
*
* Availability:
* Non-Carbon CFM: available as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( DMExtendedNotificationUPP )
NewDMExtendedNotificationUPP(DMExtendedNotificationProcPtr userRoutine);
#if !OPAQUE_UPP_TYPES
enum { uppDMExtendedNotificationProcInfo = 0x00000EC0 }; /* pascal no_return_value Func(4_bytes, 2_bytes, 4_bytes) */
#ifdef __cplusplus
inline DEFINE_API_C(DMExtendedNotificationUPP) NewDMExtendedNotificationUPP(DMExtendedNotificationProcPtr userRoutine) { return (DMExtendedNotificationUPP)NewRoutineDescriptor((ProcPtr)(userRoutine), uppDMExtendedNotificationProcInfo, GetCurrentArchitecture()); }
#else
#define NewDMExtendedNotificationUPP(userRoutine) (DMExtendedNotificationUPP)NewRoutineDescriptor((ProcPtr)(userRoutine), uppDMExtendedNotificationProcInfo, GetCurrentArchitecture())
#endif
#endif
/*
* NewDMComponentListIteratorUPP()
*
* Availability:
* Non-Carbon CFM: available as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( DMComponentListIteratorUPP )
NewDMComponentListIteratorUPP(DMComponentListIteratorProcPtr userRoutine);
#if !OPAQUE_UPP_TYPES
enum { uppDMComponentListIteratorProcInfo = 0x00000FC0 }; /* pascal no_return_value Func(4_bytes, 4_bytes, 4_bytes) */
#ifdef __cplusplus
inline DEFINE_API_C(DMComponentListIteratorUPP) NewDMComponentListIteratorUPP(DMComponentListIteratorProcPtr userRoutine) { return (DMComponentListIteratorUPP)NewRoutineDescriptor((ProcPtr)(userRoutine), uppDMComponentListIteratorProcInfo, GetCurrentArchitecture()); }
#else
#define NewDMComponentListIteratorUPP(userRoutine) (DMComponentListIteratorUPP)NewRoutineDescriptor((ProcPtr)(userRoutine), uppDMComponentListIteratorProcInfo, GetCurrentArchitecture())
#endif
#endif
/*
* NewDMDisplayModeListIteratorUPP()
*
* Availability:
* Non-Carbon CFM: available as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( DMDisplayModeListIteratorUPP )
NewDMDisplayModeListIteratorUPP(DMDisplayModeListIteratorProcPtr userRoutine);
#if !OPAQUE_UPP_TYPES
enum { uppDMDisplayModeListIteratorProcInfo = 0x00000FC0 }; /* pascal no_return_value Func(4_bytes, 4_bytes, 4_bytes) */
#ifdef __cplusplus
inline DEFINE_API_C(DMDisplayModeListIteratorUPP) NewDMDisplayModeListIteratorUPP(DMDisplayModeListIteratorProcPtr userRoutine) { return (DMDisplayModeListIteratorUPP)NewRoutineDescriptor((ProcPtr)(userRoutine), uppDMDisplayModeListIteratorProcInfo, GetCurrentArchitecture()); }
#else
#define NewDMDisplayModeListIteratorUPP(userRoutine) (DMDisplayModeListIteratorUPP)NewRoutineDescriptor((ProcPtr)(userRoutine), uppDMDisplayModeListIteratorProcInfo, GetCurrentArchitecture())
#endif
#endif
/*
* NewDMProfileListIteratorUPP()
*
* Availability:
* Non-Carbon CFM: available as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( DMProfileListIteratorUPP )
NewDMProfileListIteratorUPP(DMProfileListIteratorProcPtr userRoutine);
#if !OPAQUE_UPP_TYPES
enum { uppDMProfileListIteratorProcInfo = 0x00000FC0 }; /* pascal no_return_value Func(4_bytes, 4_bytes, 4_bytes) */
#ifdef __cplusplus
inline DEFINE_API_C(DMProfileListIteratorUPP) NewDMProfileListIteratorUPP(DMProfileListIteratorProcPtr userRoutine) { return (DMProfileListIteratorUPP)NewRoutineDescriptor((ProcPtr)(userRoutine), uppDMProfileListIteratorProcInfo, GetCurrentArchitecture()); }
#else
#define NewDMProfileListIteratorUPP(userRoutine) (DMProfileListIteratorUPP)NewRoutineDescriptor((ProcPtr)(userRoutine), uppDMProfileListIteratorProcInfo, GetCurrentArchitecture())
#endif
#endif
/*
* NewDMDisplayListIteratorUPP()
*
* Availability:
* Non-Carbon CFM: available as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( DMDisplayListIteratorUPP )
NewDMDisplayListIteratorUPP(DMDisplayListIteratorProcPtr userRoutine);
#if !OPAQUE_UPP_TYPES
enum { uppDMDisplayListIteratorProcInfo = 0x00000FC0 }; /* pascal no_return_value Func(4_bytes, 4_bytes, 4_bytes) */
#ifdef __cplusplus
inline DEFINE_API_C(DMDisplayListIteratorUPP) NewDMDisplayListIteratorUPP(DMDisplayListIteratorProcPtr userRoutine) { return (DMDisplayListIteratorUPP)NewRoutineDescriptor((ProcPtr)(userRoutine), uppDMDisplayListIteratorProcInfo, GetCurrentArchitecture()); }
#else
#define NewDMDisplayListIteratorUPP(userRoutine) (DMDisplayListIteratorUPP)NewRoutineDescriptor((ProcPtr)(userRoutine), uppDMDisplayListIteratorProcInfo, GetCurrentArchitecture())
#endif
#endif
/*
* DisposeDMNotificationUPP()
*
* Availability:
* Non-Carbon CFM: available as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( void )
DisposeDMNotificationUPP(DMNotificationUPP userUPP);
#if !OPAQUE_UPP_TYPES
#ifdef __cplusplus
inline DEFINE_API_C(void) DisposeDMNotificationUPP(DMNotificationUPP userUPP) { DisposeRoutineDescriptor((UniversalProcPtr)userUPP); }
#else
#define DisposeDMNotificationUPP(userUPP) DisposeRoutineDescriptor(userUPP)
#endif
#endif
/*
* DisposeDMExtendedNotificationUPP()
*
* Availability:
* Non-Carbon CFM: available as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( void )
DisposeDMExtendedNotificationUPP(DMExtendedNotificationUPP userUPP);
#if !OPAQUE_UPP_TYPES
#ifdef __cplusplus
inline DEFINE_API_C(void) DisposeDMExtendedNotificationUPP(DMExtendedNotificationUPP userUPP) { DisposeRoutineDescriptor((UniversalProcPtr)userUPP); }
#else
#define DisposeDMExtendedNotificationUPP(userUPP) DisposeRoutineDescriptor(userUPP)
#endif
#endif
/*
* DisposeDMComponentListIteratorUPP()
*
* Availability:
* Non-Carbon CFM: available as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( void )
DisposeDMComponentListIteratorUPP(DMComponentListIteratorUPP userUPP);
#if !OPAQUE_UPP_TYPES
#ifdef __cplusplus
inline DEFINE_API_C(void) DisposeDMComponentListIteratorUPP(DMComponentListIteratorUPP userUPP) { DisposeRoutineDescriptor((UniversalProcPtr)userUPP); }
#else
#define DisposeDMComponentListIteratorUPP(userUPP) DisposeRoutineDescriptor(userUPP)
#endif
#endif
/*
* DisposeDMDisplayModeListIteratorUPP()
*
* Availability:
* Non-Carbon CFM: available as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( void )
DisposeDMDisplayModeListIteratorUPP(DMDisplayModeListIteratorUPP userUPP);
#if !OPAQUE_UPP_TYPES
#ifdef __cplusplus
inline DEFINE_API_C(void) DisposeDMDisplayModeListIteratorUPP(DMDisplayModeListIteratorUPP userUPP) { DisposeRoutineDescriptor((UniversalProcPtr)userUPP); }
#else
#define DisposeDMDisplayModeListIteratorUPP(userUPP) DisposeRoutineDescriptor(userUPP)
#endif
#endif
/*
* DisposeDMProfileListIteratorUPP()
*
* Availability:
* Non-Carbon CFM: available as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( void )
DisposeDMProfileListIteratorUPP(DMProfileListIteratorUPP userUPP);
#if !OPAQUE_UPP_TYPES
#ifdef __cplusplus
inline DEFINE_API_C(void) DisposeDMProfileListIteratorUPP(DMProfileListIteratorUPP userUPP) { DisposeRoutineDescriptor((UniversalProcPtr)userUPP); }
#else
#define DisposeDMProfileListIteratorUPP(userUPP) DisposeRoutineDescriptor(userUPP)
#endif
#endif
/*
* DisposeDMDisplayListIteratorUPP()
*
* Availability:
* Non-Carbon CFM: available as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( void )
DisposeDMDisplayListIteratorUPP(DMDisplayListIteratorUPP userUPP);
#if !OPAQUE_UPP_TYPES
#ifdef __cplusplus
inline DEFINE_API_C(void) DisposeDMDisplayListIteratorUPP(DMDisplayListIteratorUPP userUPP) { DisposeRoutineDescriptor((UniversalProcPtr)userUPP); }
#else
#define DisposeDMDisplayListIteratorUPP(userUPP) DisposeRoutineDescriptor(userUPP)
#endif
#endif
/*
* InvokeDMNotificationUPP()
*
* Availability:
* Non-Carbon CFM: available as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( void )
InvokeDMNotificationUPP(
AppleEvent * theEvent,
DMNotificationUPP userUPP);
#if !OPAQUE_UPP_TYPES
#ifdef __cplusplus
inline DEFINE_API_C(void) InvokeDMNotificationUPP(AppleEvent * theEvent, DMNotificationUPP userUPP) { CALL_ONE_PARAMETER_UPP(userUPP, uppDMNotificationProcInfo, theEvent); }
#else
#define InvokeDMNotificationUPP(theEvent, userUPP) CALL_ONE_PARAMETER_UPP((userUPP), uppDMNotificationProcInfo, (theEvent))
#endif
#endif
/*
* InvokeDMExtendedNotificationUPP()
*
* Availability:
* Non-Carbon CFM: available as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( void )
InvokeDMExtendedNotificationUPP(
void * userData,
short theMessage,
void * notifyData,
DMExtendedNotificationUPP userUPP);
#if !OPAQUE_UPP_TYPES
#ifdef __cplusplus
inline DEFINE_API_C(void) InvokeDMExtendedNotificationUPP(void * userData, short theMessage, void * notifyData, DMExtendedNotificationUPP userUPP) { CALL_THREE_PARAMETER_UPP(userUPP, uppDMExtendedNotificationProcInfo, userData, theMessage, notifyData); }
#else
#define InvokeDMExtendedNotificationUPP(userData, theMessage, notifyData, userUPP) CALL_THREE_PARAMETER_UPP((userUPP), uppDMExtendedNotificationProcInfo, (userData), (theMessage), (notifyData))
#endif
#endif
/*
* InvokeDMComponentListIteratorUPP()
*
* Availability:
* Non-Carbon CFM: available as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( void )
InvokeDMComponentListIteratorUPP(
void * userData,
DMListIndexType itemIndex,
DMComponentListEntryPtr componentInfo,
DMComponentListIteratorUPP userUPP);
#if !OPAQUE_UPP_TYPES
#ifdef __cplusplus
inline DEFINE_API_C(void) InvokeDMComponentListIteratorUPP(void * userData, DMListIndexType itemIndex, DMComponentListEntryPtr componentInfo, DMComponentListIteratorUPP userUPP) { CALL_THREE_PARAMETER_UPP(userUPP, uppDMComponentListIteratorProcInfo, userData, itemIndex, componentInfo); }
#else
#define InvokeDMComponentListIteratorUPP(userData, itemIndex, componentInfo, userUPP) CALL_THREE_PARAMETER_UPP((userUPP), uppDMComponentListIteratorProcInfo, (userData), (itemIndex), (componentInfo))
#endif
#endif
/*
* InvokeDMDisplayModeListIteratorUPP()
*
* Availability:
* Non-Carbon CFM: available as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( void )
InvokeDMDisplayModeListIteratorUPP(
void * userData,
DMListIndexType itemIndex,
DMDisplayModeListEntryPtr displaymodeInfo,
DMDisplayModeListIteratorUPP userUPP);
#if !OPAQUE_UPP_TYPES
#ifdef __cplusplus
inline DEFINE_API_C(void) InvokeDMDisplayModeListIteratorUPP(void * userData, DMListIndexType itemIndex, DMDisplayModeListEntryPtr displaymodeInfo, DMDisplayModeListIteratorUPP userUPP) { CALL_THREE_PARAMETER_UPP(userUPP, uppDMDisplayModeListIteratorProcInfo, userData, itemIndex, displaymodeInfo); }
#else
#define InvokeDMDisplayModeListIteratorUPP(userData, itemIndex, displaymodeInfo, userUPP) CALL_THREE_PARAMETER_UPP((userUPP), uppDMDisplayModeListIteratorProcInfo, (userData), (itemIndex), (displaymodeInfo))
#endif
#endif
/*
* InvokeDMProfileListIteratorUPP()
*
* Availability:
* Non-Carbon CFM: available as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( void )
InvokeDMProfileListIteratorUPP(
void * userData,
DMListIndexType itemIndex,
DMProfileListEntryPtr profileInfo,
DMProfileListIteratorUPP userUPP);
#if !OPAQUE_UPP_TYPES
#ifdef __cplusplus
inline DEFINE_API_C(void) InvokeDMProfileListIteratorUPP(void * userData, DMListIndexType itemIndex, DMProfileListEntryPtr profileInfo, DMProfileListIteratorUPP userUPP) { CALL_THREE_PARAMETER_UPP(userUPP, uppDMProfileListIteratorProcInfo, userData, itemIndex, profileInfo); }
#else
#define InvokeDMProfileListIteratorUPP(userData, itemIndex, profileInfo, userUPP) CALL_THREE_PARAMETER_UPP((userUPP), uppDMProfileListIteratorProcInfo, (userData), (itemIndex), (profileInfo))
#endif
#endif
/*
* InvokeDMDisplayListIteratorUPP()
*
* Availability:
* Non-Carbon CFM: available as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( void )
InvokeDMDisplayListIteratorUPP(
void * userData,
DMListIndexType itemIndex,
DisplayListEntryPtr displaymodeInfo,
DMDisplayListIteratorUPP userUPP);
#if !OPAQUE_UPP_TYPES
#ifdef __cplusplus
inline DEFINE_API_C(void) InvokeDMDisplayListIteratorUPP(void * userData, DMListIndexType itemIndex, DisplayListEntryPtr displaymodeInfo, DMDisplayListIteratorUPP userUPP) { CALL_THREE_PARAMETER_UPP(userUPP, uppDMDisplayListIteratorProcInfo, userData, itemIndex, displaymodeInfo); }
#else
#define InvokeDMDisplayListIteratorUPP(userData, itemIndex, displaymodeInfo, userUPP) CALL_THREE_PARAMETER_UPP((userUPP), uppDMDisplayListIteratorProcInfo, (userData), (itemIndex), (displaymodeInfo))
#endif
#endif
#if CALL_NOT_IN_CARBON || OLDROUTINENAMES
/* support for pre-Carbon UPP routines: New...Proc and Call...Proc */
#define NewDMNotificationProc(userRoutine) NewDMNotificationUPP(userRoutine)
#define NewDMExtendedNotificationProc(userRoutine) NewDMExtendedNotificationUPP(userRoutine)
#define NewDMComponentListIteratorProc(userRoutine) NewDMComponentListIteratorUPP(userRoutine)
#define NewDMDisplayModeListIteratorProc(userRoutine) NewDMDisplayModeListIteratorUPP(userRoutine)
#define NewDMProfileListIteratorProc(userRoutine) NewDMProfileListIteratorUPP(userRoutine)
#define NewDMDisplayListIteratorProc(userRoutine) NewDMDisplayListIteratorUPP(userRoutine)
#define CallDMNotificationProc(userRoutine, theEvent) InvokeDMNotificationUPP(theEvent, userRoutine)
#define CallDMExtendedNotificationProc(userRoutine, userData, theMessage, notifyData) InvokeDMExtendedNotificationUPP(userData, theMessage, notifyData, userRoutine)
#define CallDMComponentListIteratorProc(userRoutine, userData, itemIndex, componentInfo) InvokeDMComponentListIteratorUPP(userData, itemIndex, componentInfo, userRoutine)
#define CallDMDisplayModeListIteratorProc(userRoutine, userData, itemIndex, displaymodeInfo) InvokeDMDisplayModeListIteratorUPP(userData, itemIndex, displaymodeInfo, userRoutine)
#define CallDMProfileListIteratorProc(userRoutine, userData, itemIndex, profileInfo) InvokeDMProfileListIteratorUPP(userData, itemIndex, profileInfo, userRoutine)
#define CallDMDisplayListIteratorProc(userRoutine, userData, itemIndex, displaymodeInfo) InvokeDMDisplayListIteratorUPP(userData, itemIndex, displaymodeInfo, userRoutine)
#endif /* CALL_NOT_IN_CARBON */
#if CALL_NOT_IN_CARBON
/*
* DMDisplayGestalt()
*
* Availability:
* Non-Carbon CFM: in DisplayLib 2.1 and later
* CarbonLib: not available
* Mac OS X: not available
*/
EXTERN_API( OSErr )
DMDisplayGestalt(
DisplayIDType theDisplayID,
ResType displayGestaltSelector,
UInt32 * displayGestaltResponse) THREEWORDINLINE(0x303C, 0x06D3, 0xABEB);
/*
* DMUseScreenPrefs()
*
* Availability:
* Non-Carbon CFM: in DisplayLib 2.1 and later
* CarbonLib: not available
* Mac OS X: not available
*/
EXTERN_API( OSErr )
DMUseScreenPrefs(
Boolean usePrefs,
Handle displayState) THREEWORDINLINE(0x303C, 0x03EC, 0xABEB);
/*
* DMSuspendConfigure()
*
* Availability:
* Non-Carbon CFM: in DisplayLib 2.1 and later
* CarbonLib: not available
* Mac OS X: not available
*/
EXTERN_API( OSErr )
DMSuspendConfigure(
Handle displayState,
unsigned long reserved1) THREEWORDINLINE(0x303C, 0x04E9, 0xABEB);
/*
* DMResumeConfigure()
*
* Availability:
* Non-Carbon CFM: in DisplayLib 2.1 and later
* CarbonLib: not available
* Mac OS X: not available
*/
EXTERN_API( OSErr )
DMResumeConfigure(
Handle displayState,
unsigned long reserved1) THREEWORDINLINE(0x303C, 0x04E8, 0xABEB);
/*
* DMSetGammaByAVID()
*
* Availability:
* Non-Carbon CFM: in DisplayLib 2.1 and later
* CarbonLib: not available
* Mac OS X: not available
*/
EXTERN_API( OSErr )
DMSetGammaByAVID(
AVIDType gammaAVID,
UInt32 setGammaFlags,
GammaTblHandle theGamma) THREEWORDINLINE(0x303C, 0x06D1, 0xABEB);
/*
* DMGetGammaByAVID()
*
* Availability:
* Non-Carbon CFM: in DisplayLib 2.1 and later
* CarbonLib: not available
* Mac OS X: not available
*/
EXTERN_API( OSErr )
DMGetGammaByAVID(
AVIDType gammaAVID,
UInt32 getGammaFlags,
GammaTblHandle * theGamma) THREEWORDINLINE(0x303C, 0x06D0, 0xABEB);
/*
* DMGetMakeAndModelByAVID()
*
* Availability:
* Non-Carbon CFM: in DisplayLib 2.1 and later
* CarbonLib: not available
* Mac OS X: not available
*/
EXTERN_API( OSErr )
DMGetMakeAndModelByAVID(
AVIDType theAVID,
DMMakeAndModelPtr theMakeAndModel) THREEWORDINLINE(0x303C, 0x04D7, 0xABEB);
/*
* DMNewDisplayList()
*
* Availability:
* Non-Carbon CFM: in DisplayLib 2.1 and later
* CarbonLib: not available
* Mac OS X: not available
*/
EXTERN_API( OSErr )
DMNewDisplayList(
UInt32 displayListIncludeFlags,
UInt32 reserved1,
UInt32 reserved2,
DMListIndexType * theCount,
DMListType * theDisplayList) THREEWORDINLINE(0x303C, 0x0AD6, 0xABEB);
/*
* DMGetIndexedDisplayFromList()
*
* Availability:
* Non-Carbon CFM: in DisplayLib 2.1 and later
* CarbonLib: not available
* Mac OS X: not available
*/
EXTERN_API( OSErr )
DMGetIndexedDisplayFromList(
DMListType theDisplayList,
DMListIndexType itemIndex,
UInt32 reserved,
DMDisplayListIteratorUPP listIterator,
void * userData) THREEWORDINLINE(0x303C, 0x0AD5, 0xABEB);
/*
* DMNewProfileListByAVID()
*
* Availability:
* Non-Carbon CFM: in DisplayLib 2.1 and later
* CarbonLib: not available
* Mac OS X: not available
*/
EXTERN_API( OSErr )
DMNewProfileListByAVID(
AVIDType theAVID,
UInt32 reserved,
DMListIndexType * profileCount,
DMListType * profileList) THREEWORDINLINE(0x303C, 0x08DC, 0xABEB);
/*
* DMGetIndexedProfileFromList()
*
* Availability:
* Non-Carbon CFM: in DisplayLib 2.1 and later
* CarbonLib: not available
* Mac OS X: not available
*/
EXTERN_API( OSErr )
DMGetIndexedProfileFromList(
DMListType profileList,
DMListIndexType itemIndex,
UInt32 reserved,
DMProfileListIteratorUPP listIterator,
void * userData) THREEWORDINLINE(0x303C, 0x0ADB, 0xABEB);
#endif /* CALL_NOT_IN_CARBON */
/*
* DMGetFirstScreenDevice()
*
* Availability:
* Non-Carbon CFM: in InterfaceLib 7.1 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( GDHandle )
DMGetFirstScreenDevice(Boolean activeOnly) TWOWORDINLINE(0x7000, 0xABEB);
/*
* DMGetNextScreenDevice()
*
* Availability:
* Non-Carbon CFM: in InterfaceLib 7.1 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( GDHandle )
DMGetNextScreenDevice(
GDHandle theDevice,
Boolean activeOnly) TWOWORDINLINE(0x7001, 0xABEB);
/*
* DMDrawDesktopRect()
*
* Availability:
* Non-Carbon CFM: in InterfaceLib 7.1 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( void )
DMDrawDesktopRect(Rect * globalRect) TWOWORDINLINE(0x7002, 0xABEB);
/*
* DMDrawDesktopRegion()
*
* Availability:
* Non-Carbon CFM: in InterfaceLib 7.1 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( void )
DMDrawDesktopRegion(RgnHandle globalRgn) TWOWORDINLINE(0x7003, 0xABEB);
/*
* DMBeginConfigureDisplays()
*
* Availability:
* Non-Carbon CFM: in InterfaceLib 7.1 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMBeginConfigureDisplays(Handle * displayState) THREEWORDINLINE(0x303C, 0x0206, 0xABEB);
/*
* DMEndConfigureDisplays()
*
* Availability:
* Non-Carbon CFM: in InterfaceLib 7.1 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMEndConfigureDisplays(Handle displayState) THREEWORDINLINE(0x303C, 0x0207, 0xABEB);
/*
* DMAddDisplay()
*
* Availability:
* Non-Carbon CFM: in InterfaceLib 7.1 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMAddDisplay(
GDHandle newDevice,
short driver,
unsigned long mode,
unsigned long reserved,
unsigned long displayID,
Component displayComponent,
Handle displayState) THREEWORDINLINE(0x303C, 0x0D08, 0xABEB);
/*
* DMMoveDisplay()
*
* Availability:
* Non-Carbon CFM: in InterfaceLib 7.1 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMMoveDisplay(
GDHandle moveDevice,
short x,
short y,
Handle displayState) THREEWORDINLINE(0x303C, 0x0609, 0xABEB);
/*
* DMDisableDisplay()
*
* Availability:
* Non-Carbon CFM: in InterfaceLib 7.1 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMDisableDisplay(
GDHandle disableDevice,
Handle displayState) THREEWORDINLINE(0x303C, 0x040A, 0xABEB);
/*
* DMEnableDisplay()
*
* Availability:
* Non-Carbon CFM: in InterfaceLib 7.1 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMEnableDisplay(
GDHandle enableDevice,
Handle displayState) THREEWORDINLINE(0x303C, 0x040B, 0xABEB);
/*
* DMRemoveDisplay()
*
* Availability:
* Non-Carbon CFM: in InterfaceLib 7.1 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMRemoveDisplay(
GDHandle removeDevice,
Handle displayState) THREEWORDINLINE(0x303C, 0x040C, 0xABEB);
/*
* DMSetMainDisplay()
*
* Availability:
* Non-Carbon CFM: in InterfaceLib 7.1 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMSetMainDisplay(
GDHandle newMainDevice,
Handle displayState) THREEWORDINLINE(0x303C, 0x0410, 0xABEB);
/*
* DMSetDisplayMode()
*
* Availability:
* Non-Carbon CFM: in InterfaceLib 7.1 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMSetDisplayMode(
GDHandle theDevice,
unsigned long mode,
unsigned long * depthMode,
unsigned long reserved,
Handle displayState) THREEWORDINLINE(0x303C, 0x0A11, 0xABEB);
/*
* DMCheckDisplayMode()
*
* Availability:
* Non-Carbon CFM: in InterfaceLib 7.1 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMCheckDisplayMode(
GDHandle theDevice,
unsigned long mode,
unsigned long depthMode,
unsigned long * switchFlags,
unsigned long reserved,
Boolean * modeOk) THREEWORDINLINE(0x303C, 0x0C12, 0xABEB);
/*
* DMGetDeskRegion()
*
* Availability:
* Non-Carbon CFM: in InterfaceLib 7.1 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMGetDeskRegion(RgnHandle * desktopRegion) THREEWORDINLINE(0x303C, 0x0213, 0xABEB);
/*
* DMRegisterNotifyProc()
*
* Availability:
* Non-Carbon CFM: in InterfaceLib 7.1 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMRegisterNotifyProc(
DMNotificationUPP notificationProc,
DMProcessInfoPtr whichPSN) THREEWORDINLINE(0x303C, 0x0414, 0xABEB);
/*
* DMRemoveNotifyProc()
*
* Availability:
* Non-Carbon CFM: in InterfaceLib 7.1 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMRemoveNotifyProc(
DMNotificationUPP notificationProc,
DMProcessInfoPtr whichPSN) THREEWORDINLINE(0x303C, 0x0415, 0xABEB);
/*
* DMQDIsMirroringCapable()
*
* Availability:
* Non-Carbon CFM: in InterfaceLib 7.5 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMQDIsMirroringCapable(Boolean * qdIsMirroringCapable) THREEWORDINLINE(0x303C, 0x0216, 0xABEB);
/*
* DMCanMirrorNow()
*
* Availability:
* Non-Carbon CFM: in InterfaceLib 7.5 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMCanMirrorNow(Boolean * canMirrorNow) THREEWORDINLINE(0x303C, 0x0217, 0xABEB);
/*
* DMIsMirroringOn()
*
* Availability:
* Non-Carbon CFM: in InterfaceLib 7.5 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMIsMirroringOn(Boolean * isMirroringOn) THREEWORDINLINE(0x303C, 0x0218, 0xABEB);
/*
* DMMirrorDevices()
*
* Availability:
* Non-Carbon CFM: in InterfaceLib 7.5 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMMirrorDevices(
GDHandle gD1,
GDHandle gD2,
Handle displayState) THREEWORDINLINE(0x303C, 0x0619, 0xABEB);
/*
* DMUnmirrorDevice()
*
* Availability:
* Non-Carbon CFM: in InterfaceLib 7.5 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMUnmirrorDevice(
GDHandle gDevice,
Handle displayState) THREEWORDINLINE(0x303C, 0x041A, 0xABEB);
/*
* DMGetNextMirroredDevice()
*
* Availability:
* Non-Carbon CFM: in InterfaceLib 7.5 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMGetNextMirroredDevice(
GDHandle gDevice,
GDHandle * mirroredDevice) THREEWORDINLINE(0x303C, 0x041B, 0xABEB);
/*
* DMBlockMirroring()
*
* Availability:
* Non-Carbon CFM: in InterfaceLib 7.5 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMBlockMirroring(void) TWOWORDINLINE(0x701C, 0xABEB);
/*
* DMUnblockMirroring()
*
* Availability:
* Non-Carbon CFM: in InterfaceLib 7.5 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMUnblockMirroring(void) TWOWORDINLINE(0x701D, 0xABEB);
#if CALL_NOT_IN_CARBON
/*
* DMGetDisplayMgrA5World()
*
* Availability:
* Non-Carbon CFM: in InterfaceLib 7.5 and later
* CarbonLib: not available
* Mac OS X: not available
*/
EXTERN_API( OSErr )
DMGetDisplayMgrA5World(Ptr * dmA5) THREEWORDINLINE(0x303C, 0x021E, 0xABEB);
#endif /* CALL_NOT_IN_CARBON */
/*
* DMGetDisplayIDByGDevice()
*
* Availability:
* Non-Carbon CFM: in InterfaceLib 7.5 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMGetDisplayIDByGDevice(
GDHandle displayDevice,
DisplayIDType * displayID,
Boolean failToMain) THREEWORDINLINE(0x303C, 0x051F, 0xABEB);
/*
* DMGetGDeviceByDisplayID()
*
* Availability:
* Non-Carbon CFM: in InterfaceLib 7.5 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMGetGDeviceByDisplayID(
DisplayIDType displayID,
GDHandle * displayDevice,
Boolean failToMain) THREEWORDINLINE(0x303C, 0x0520, 0xABEB);
/*
* DMSetDisplayComponent()
*
* Availability:
* Non-Carbon CFM: in InterfaceLib 7.1 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMSetDisplayComponent(
GDHandle theDevice,
Component displayComponent) THREEWORDINLINE(0x303C, 0x0421, 0xABEB);
/*
* DMGetDisplayComponent()
*
* Availability:
* Non-Carbon CFM: in InterfaceLib 7.1 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMGetDisplayComponent(
GDHandle theDevice,
Component * displayComponent) THREEWORDINLINE(0x303C, 0x0422, 0xABEB);
/*
* DMNewDisplay()
*
* Availability:
* Non-Carbon CFM: in InterfaceLib 7.5 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMNewDisplay(
GDHandle * newDevice,
short driverRefNum,
unsigned long mode,
unsigned long reserved,
DisplayIDType displayID,
Component displayComponent,
Handle displayState) THREEWORDINLINE(0x303C, 0x0D23, 0xABEB);
/*
* DMDisposeDisplay()
*
* Availability:
* Non-Carbon CFM: in InterfaceLib 7.5 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMDisposeDisplay(
GDHandle disposeDevice,
Handle displayState) THREEWORDINLINE(0x303C, 0x0424, 0xABEB);
/*
* DMResolveDisplayComponents()
*
* Availability:
* Non-Carbon CFM: in InterfaceLib 7.1 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMResolveDisplayComponents(void) TWOWORDINLINE(0x7025, 0xABEB);
/*
* DMRegisterExtendedNotifyProc()
*
* Availability:
* Non-Carbon CFM: in DisplayLib 2.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMRegisterExtendedNotifyProc(
DMExtendedNotificationUPP notifyProc,
void * notifyUserData,
unsigned short nofifyOnFlags,
DMProcessInfoPtr whichPSN) THREEWORDINLINE(0x303C, 0x07EF, 0xABEB);
/*
* DMRemoveExtendedNotifyProc()
*
* Availability:
* Non-Carbon CFM: in DisplayLib 2.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMRemoveExtendedNotifyProc(
DMExtendedNotificationUPP notifyProc,
void * notifyUserData,
DMProcessInfoPtr whichPSN,
unsigned short removeFlags) THREEWORDINLINE(0x303C, 0x0726, 0xABEB);
/*
* DMNewAVPanelList()
*
* Availability:
* Non-Carbon CFM: in DisplayLib68k 2.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMNewAVPanelList(
DisplayIDType displayID,
ResType panelType,
DMFidelityType minimumFidelity,
unsigned long panelListFlags,
unsigned long reserved,
DMListIndexType * thePanelCount,
DMListType * thePanelList) THREEWORDINLINE(0x303C, 0x0C27, 0xABEB);
/*
* DMNewAVEngineList()
*
* Availability:
* Non-Carbon CFM: in DisplayLib68k 2.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMNewAVEngineList(
DisplayIDType displayID,
ResType engineType,
DMFidelityType minimumFidelity,
unsigned long engineListFlags,
unsigned long reserved,
DMListIndexType * engineCount,
DMListType * engineList) THREEWORDINLINE(0x303C, 0x0C28, 0xABEB);
/*
* DMNewAVDeviceList()
*
* Availability:
* Non-Carbon CFM: in DisplayLib68k 2.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMNewAVDeviceList(
ResType deviceType,
unsigned long deviceListFlags,
unsigned long reserved,
DMListIndexType * deviceCount,
DMListType * deviceList) THREEWORDINLINE(0x303C, 0x0A29, 0xABEB);
/*
* DMNewAVPortListByPortType()
*
* Availability:
* Non-Carbon CFM: in DisplayLib68k 2.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMNewAVPortListByPortType(
ResType subType,
unsigned long portListFlags,
unsigned long reserved,
DMListIndexType * devicePortCount,
DMListType * theDevicePortList) THREEWORDINLINE(0x303C, 0x0A2A, 0xABEB);
/*
* DMGetIndexedComponentFromList()
*
* Availability:
* Non-Carbon CFM: in DisplayLib68k 2.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMGetIndexedComponentFromList(
DMListType panelList,
DMListIndexType itemIndex,
unsigned long reserved,
DMComponentListIteratorUPP listIterator,
void * userData) THREEWORDINLINE(0x303C, 0x0A2B, 0xABEB);
/*
* DMDisposeList()
*
* Availability:
* Non-Carbon CFM: in DisplayLib 2.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMDisposeList(DMListType panelList) THREEWORDINLINE(0x303C, 0x022C, 0xABEB);
/*
* DMGetNameByAVID()
*
* Availability:
* Non-Carbon CFM: in DisplayLib68k 2.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMGetNameByAVID(
AVIDType theID,
unsigned long nameFlags,
Str255 name) THREEWORDINLINE(0x303C, 0x062D, 0xABEB);
/*
* DMNewAVIDByPortComponent()
*
* Availability:
* Non-Carbon CFM: in DisplayLib68k 2.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMNewAVIDByPortComponent(
Component thePortComponent,
ResType portKind,
unsigned long reserved,
AVIDType * newID) THREEWORDINLINE(0x303C, 0x082E, 0xABEB);
/*
* DMGetPortComponentByAVID()
*
* Availability:
* Non-Carbon CFM: in DisplayLib68k 2.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMGetPortComponentByAVID(
DisplayIDType thePortID,
Component * thePortComponent,
ComponentDescription * theDesciption,
ResType * thePortKind) THREEWORDINLINE(0x303C, 0x082F, 0xABEB);
/*
* DMSendDependentNotification()
*
* Availability:
* Non-Carbon CFM: in DisplayLib 2.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMSendDependentNotification(
ResType notifyType,
ResType notifyClass,
AVIDType displayID,
ComponentInstance notifyComponent) THREEWORDINLINE(0x303C, 0x0830, 0xABEB);
/*
* DMDisposeAVComponent()
*
* Availability:
* Non-Carbon CFM: in DisplayLib68k 2.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMDisposeAVComponent(Component theAVComponent) THREEWORDINLINE(0x303C, 0x0231, 0xABEB);
/*
* DMSaveScreenPrefs()
*
* Availability:
* Non-Carbon CFM: in DisplayLib68k 2.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMSaveScreenPrefs(
unsigned long reserved1,
unsigned long saveFlags,
unsigned long reserved2) THREEWORDINLINE(0x303C, 0x0632, 0xABEB);
/*
* DMNewAVIDByDeviceComponent()
*
* Availability:
* Non-Carbon CFM: in DisplayLib68k 2.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMNewAVIDByDeviceComponent(
Component theDeviceComponent,
ResType portKind,
unsigned long reserved,
DisplayIDType * newID) THREEWORDINLINE(0x303C, 0x0833, 0xABEB);
/*
* DMNewAVPortListByDeviceAVID()
*
* Availability:
* Non-Carbon CFM: in DisplayLib68k 2.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMNewAVPortListByDeviceAVID(
AVIDType theID,
DMFidelityType minimumFidelity,
unsigned long portListFlags,
unsigned long reserved,
DMListIndexType * devicePortCount,
DMListType * theDevicePortList) THREEWORDINLINE(0x303C, 0x0C34, 0xABEB);
/*
* DMGetDeviceComponentByAVID()
*
* Availability:
* Non-Carbon CFM: in DisplayLib68k 2.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMGetDeviceComponentByAVID(
AVIDType theDeviceID,
Component * theDeviceComponent,
ComponentDescription * theDesciption,
ResType * theDeviceKind) THREEWORDINLINE(0x303C, 0x0835, 0xABEB);
/*
* DMNewDisplayModeList()
*
* Availability:
* Non-Carbon CFM: in DisplayLib68k 2.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMNewDisplayModeList(
DisplayIDType displayID,
unsigned long modeListFlags,
unsigned long reserved,
DMListIndexType * thePanelCount,
DMListType * thePanelList) THREEWORDINLINE(0x303C, 0x0A36, 0xABEB);
/*
* DMGetIndexedDisplayModeFromList()
*
* Availability:
* Non-Carbon CFM: in DisplayLib68k 2.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMGetIndexedDisplayModeFromList(
DMListType panelList,
DMListIndexType itemIndex,
unsigned long reserved,
DMDisplayModeListIteratorUPP listIterator,
void * userData) THREEWORDINLINE(0x303C, 0x0A37, 0xABEB);
/*
* DMGetGraphicInfoByAVID()
*
* Availability:
* Non-Carbon CFM: in DisplayLib68k 2.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMGetGraphicInfoByAVID(
AVIDType theID,
PicHandle * theAVPcit,
Handle * theAVIconSuite,
AVLocationRec * theAVLocation) THREEWORDINLINE(0x303C, 0x0838, 0xABEB);
/*
* DMGetAVPowerState()
*
* Availability:
* Non-Carbon CFM: in DisplayLib68k 2.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMGetAVPowerState(
AVIDType theID,
AVPowerStatePtr getPowerState,
unsigned long reserved1) THREEWORDINLINE(0x303C, 0x0839, 0xABEB);
/*
* DMSetAVPowerState()
*
* Availability:
* Non-Carbon CFM: in DisplayLib68k 2.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMSetAVPowerState(
AVIDType theID,
AVPowerStatePtr setPowerState,
unsigned long powerFlags,
Handle displayState) THREEWORDINLINE(0x303C, 0x083A, 0xABEB);
/*
* DMGetDeviceAVIDByPortAVID()
*
* Availability:
* Non-Carbon CFM: in DisplayLib68k 2.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMGetDeviceAVIDByPortAVID(
AVIDType portAVID,
AVIDType * deviceAVID) THREEWORDINLINE(0x303C, 0x043B, 0xABEB);
/*
* DMGetEnableByAVID()
*
* Availability:
* Non-Carbon CFM: in DisplayLib68k 2.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMGetEnableByAVID(
AVIDType theAVID,
Boolean * isAVIDEnabledNow,
Boolean * canChangeEnableNow) THREEWORDINLINE(0x303C, 0x063C, 0xABEB);
/*
* DMSetEnableByAVID()
*
* Availability:
* Non-Carbon CFM: in DisplayLib68k 2.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMSetEnableByAVID(
AVIDType theAVID,
Boolean doEnable,
Handle displayState) THREEWORDINLINE(0x303C, 0x053D, 0xABEB);
/*
* DMGetDisplayMode()
*
* Availability:
* Non-Carbon CFM: in DisplayLib68k 2.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMGetDisplayMode(
GDHandle theDevice,
VDSwitchInfoPtr switchInfo) THREEWORDINLINE(0x303C, 0x043E, 0xABEB);
/*
* DMConfirmConfiguration()
*
* Availability:
* Non-Carbon CFM: in DisplayLib 2.1 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API( OSErr )
DMConfirmConfiguration(
DMModalFilterUPP filterProc,
UInt32 confirmFlags,
UInt32 reserved,
Handle displayState) THREEWORDINLINE(0x303C, 0x083F, 0xABEB);
#if PRAGMA_STRUCT_ALIGN
#pragma options align=reset
#elif PRAGMA_STRUCT_PACKPUSH
#pragma pack(pop)
#elif PRAGMA_STRUCT_PACK
#pragma pack()
#endif
#ifdef PRAGMA_IMPORT_OFF
#pragma import off
#elif PRAGMA_IMPORT
#pragma import reset
#endif
#ifdef __cplusplus
}
#endif
#endif /* __DISPLAYS__ */
|