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
/*
* Copyright 2014 Jacek Caban for CodeWeavers
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
import "oaidl.idl";
import "ocidl.idl";
#ifndef __WIDL__
#define threading(model)
#define progid(str)
#define vi_progid(str)
#endif
[
helpstring("Windows Media Player"),
version(1.0),
uuid(6bf52a50-394a-11d3-b153-00c04f79Faa6)
]
library WMPLib {
importlib("stdole2.tlb");
typedef enum {
wmposUndefined,
wmposPlaylistChanging,
wmposPlaylistLocating,
wmposPlaylistConnecting,
wmposPlaylistLoading,
wmposPlaylistOpening,
wmposPlaylistOpenNoMedia,
wmposPlaylistChanged,
wmposMediaChanging,
wmposMediaLocating,
wmposMediaConnecting,
wmposMediaLoading,
wmposMediaOpening,
wmposMediaOpen,
wmposBeginCodecAcquisition,
wmposEndCodecAcquisition,
wmposBeginLicenseAcquisition,
wmposEndLicenseAcquisition,
wmposBeginIndividualization,
wmposEndIndividualization,
wmposMediaWaiting,
wmposOpeningUnknownURL
} WMPOpenState;
typedef enum {
wmppsUndefined,
wmppsStopped,
wmppsPaused,
wmppsPlaying,
wmppsScanForward,
wmppsScanReverse,
wmppsBuffering,
wmppsWaiting,
wmppsMediaEnded,
wmppsTransitioning,
wmppsReady,
wmppsReconnecting,
wmppsLast
} WMPPlayState;
typedef enum {
wmplcUnknown,
wmplcClear,
wmplcInfoChange,
wmplcMove,
wmplcDelete,
wmplcInsert,
wmplcAppend,
wmplcPrivate,
wmplcNameChange,
wmplcMorph,
wmplcSort,
wmplcLast
} WMPPlaylistChangeEventType;
typedef enum {
wmpdsUnknown,
wmpdsPartnershipExists,
wmpdsPartnershipDeclined,
wmpdsPartnershipAnother,
wmpdsManualDevice,
wmpdsNewDevice,
wmpdsLast
} WMPDeviceStatus;
typedef enum {
wmpssUnknown,
wmpssSynchronizing,
wmpssStopped,
wmpssEstimating,
wmpssLast
} WMPSyncState;
typedef enum {
wmprsUnknown,
wmprsRipping,
wmprsStopped
} WMPRipState;
typedef enum {
wmpbfAudioCD,
wmpbfDataCD
} WMPBurnFormat;
typedef enum {
wmpbsUnknown,
wmpbsBusy,
wmpbsReady,
wmpbsWaitingForDisc,
wmpbsRefreshStatusPending,
wmpbsPreparingToBurn,
wmpbsBurning,
wmpbsStopped,
wmpbsErasing,
wmpbsDownloading
} WMPBurnState;
typedef enum {
wmpltUnknown,
wmpltAll,
wmpltLocal,
wmpltRemote,
wmpltDisc,
wmpltPortableDevice
} WMPLibraryType;
typedef enum {
wmpfssUnknown,
wmpfssScanning,
wmpfssUpdating,
wmpfssStopped
} WMPFolderScanState;
typedef enum {
wmpsccetUnknown,
wmpsccetInsert,
wmpsccetChange,
wmpsccetDelete,
wmpsccetClear,
wmpsccetBeginUpdates,
wmpsccetEndUpdates
} WMPStringCollectionChangeEventType;
interface IWMPMedia;
[
odl,
uuid(d5f0f4f1-130c-11d3-b14e-00c04f79Faa6),
dual,
oleautomation
]
interface IWMPPlaylist : IDispatch
{
[id(0x00c9), propget]
HRESULT count([out, retval] long *plCount);
[id(0x00ca), propget]
HRESULT name([out, retval] BSTR *pbstrName);
[id(0x00ca), propput]
HRESULT name([in] BSTR pbstrName);
[id(0x00d2), propget]
HRESULT attributeCount([out, retval] long *plCount);
[id(0x00d3), propget]
HRESULT attributeName(
[in] long lIndex,
[out, retval] BSTR *pbstrAttributeName);
[id(0x00d4), propget]
HRESULT Item(
[in] long lIndex,
[out, retval] IWMPMedia** ppIWMPMedia);
[id(0x00cb)]
HRESULT getItemInfo(
[in] BSTR bstrName,
[out, retval] BSTR *pbstrVal);
[id(0x00cc)]
HRESULT setItemInfo(
[in] BSTR bstrName,
[in] BSTR bstrValue);
[id(0x00d5), propget]
HRESULT isIdentical(
[in] IWMPPlaylist *pIWMPPlaylist,
[out, retval] VARIANT_BOOL *pvbool);
[id(0x00cd)]
HRESULT clear();
[id(0x00ce)]
HRESULT insertItem(
[in] long lIndex,
[in] IWMPMedia *pIWMPMedia);
[id(0x00cf)]
HRESULT appendItem([in] IWMPMedia *pIWMPMedia);
[id(0x00d0)]
HRESULT removeItem([in] IWMPMedia *pIWMPMedia);
[id(0x00d1)]
HRESULT moveItem(
long lIndexOld,
long lIndexNew);
}
[
odl,
uuid(94d55e95-3Fac-11d3-b155-00c04f79faa6),
dual,
oleautomation
]
interface IWMPMedia : IDispatch
{
[id(0x02fb), propget]
HRESULT isIdentical(
[in] IWMPMedia *pIWMPMedia,
[out, retval] VARIANT_BOOL *pvbool);
[id(0x02ef), propget]
HRESULT sourceURL([out, retval] BSTR *pbstrSourceURL);
[id(0x02fc), propget]
HRESULT name([out, retval] BSTR *pbstrName);
[id(0x02fc), propput]
HRESULT name([in] BSTR pbstrName);
[id(0x02f0), propget]
HRESULT imageSourceWidth([out, retval] long *pWidth);
[id(0x02f1), propget]
HRESULT imageSourceHeight([out, retval] long *pHeight);
[id(0x02f2), propget]
HRESULT markerCount([out, retval] long *pMarkerCount);
[id(0x02f3)]
HRESULT getMarkerTime(
[in] long MarkerNum,
[out, retval] double *pMarkerTime);
[id(0x02f4)]
HRESULT getMarkerName(
[in] long MarkerNum,
[out, retval] BSTR *pbstrMarkerName);
[id(0x02f5), propget]
HRESULT duration([out, retval] double *pDuration);
[id(0x02f6), propget]
HRESULT durationString([out, retval] BSTR *pbstrDuration);
[id(0x02f7), propget]
HRESULT attributeCount([out, retval] long *plCount);
[id(0x02f8)]
HRESULT getAttributeName(
[in] long lIndex,
[out, retval] BSTR *pbstrItemName);
[id(0x02f9)]
HRESULT getItemInfo(
[in] BSTR bstrItemName,
[out, retval] BSTR *pbstrVal);
[id(0x02fa)]
HRESULT setItemInfo(
[in] BSTR bstrItemName,
[in] BSTR bstrVal);
[id(0x02fd)]
HRESULT getItemInfoByAtom(
[in] long lAtom,
[out, retval] BSTR *pbstrVal);
[id(0x02fe)]
HRESULT isMemberOf(
[in] IWMPPlaylist *pPlaylist,
[out, retval] VARIANT_BOOL *pvarfIsMemberOf);
[id(0x02ff)]
HRESULT isReadOnlyItem(
[in] BSTR bstrItemName,
[out, retval] VARIANT_BOOL *pvarfIsReadOnly);
}
[
odl,
uuid(74c09E02-f828-11d2-a74b-00a0c905f36e),
dual,
oleautomation
]
interface IWMPControls : IDispatch {
[id(0x003e), propget]
HRESULT isAvailable(
[in] BSTR bstrItem,
[out, retval] VARIANT_BOOL *pIsAvailable);
[id(0x0033)]
HRESULT play();
[id(0x0034)]
HRESULT stop();
[id(0x0035)]
HRESULT pause();
[id(0x0036)]
HRESULT fastForward();
[id(0x0037)]
HRESULT fastReverse();
[id(0x0038), propget]
HRESULT currentPosition([out, retval] double *pdCurrentPosition);
[id(0x0038), propput]
HRESULT currentPosition([in] double pdCurrentPosition);
[id(0x0039), propget]
HRESULT currentPositionString([out, retval] BSTR *pbstrCurrentPosition);
[id(0x003a)]
HRESULT next();
[id(0x003b)]
HRESULT previous();
[id(0x003c)]
HRESULT currentItem([out, retval] IWMPMedia **ppIWMPMedia);
[id(0x003c), propput]
HRESULT currentItem([in] IWMPMedia *ppIWMPMedia);
[id(0x003d), propget]
HRESULT currentMarker([out, retval] long *plMarker);
[id(0x003d), propput]
HRESULT currentMarker([in] long plMarker);
[id(0x003f)]
HRESULT playItem([in] IWMPMedia *pIWMPMedia);
}
[
odl,
uuid(9104d1ab-80c9-4fed-abf0-2e6417a6df14),
dual,
oleautomation
]
interface IWMPSettings : IDispatch
{
[id(0x0071), propget]
HRESULT isAvailable(
[in] BSTR bstrItem,
[out, retval] VARIANT_BOOL *pIsAvailable);
[id(0x0065), propget]
HRESULT autoStart([out, retval] VARIANT_BOOL *pfAutoStart);
[id(0x0065), propput]
HRESULT autoStart([in] VARIANT_BOOL pfAutoStart);
[id(0x006c), propget]
HRESULT baseURL([out, retval] BSTR *pbstrBaseURL);
[id(0x006c), propput]
HRESULT baseURL([in] BSTR pbstrBaseURL);
[id(0x006d), propget]
HRESULT defaultFrame([out, retval] BSTR *pbstrDefaultFrame);
[id(0x006d), propput]
HRESULT defaultFrame([in] BSTR pbstrDefaultFrame);
[id(0x0067), propget]
HRESULT invokeURLs([out, retval] VARIANT_BOOL *pfInvokeURLs);
[id(0x0067), propput]
HRESULT invokeURLs([in] VARIANT_BOOL pfInvokeURLs);
[id(0x0068), propget]
HRESULT mute([out, retval] VARIANT_BOOL *pfMute);
[id(0x0068), propput]
HRESULT mute([in] VARIANT_BOOL pfMute);
[id(0x0069), propget]
HRESULT playCount([out, retval] long *plCount);
[id(0x0069), propput]
HRESULT playCount([in] long plCount);
[id(0x006a), propget]
HRESULT rate([out, retval] double *pdRate);
[id(0x006a), propput]
HRESULT rate([in] double pdRate);
[id(0x0066), propget]
HRESULT balance([out, retval] long *plBalance);
[id(0x0066), propput]
HRESULT balance([in] long plBalance);
[id(0x006b), propget]
HRESULT volume([out, retval] long *plVolume);
[id(0x006b), propput]
HRESULT volume([in] long plVolume);
[id(0x006e)]
HRESULT getMode(
[in] BSTR bstrMode,
[out, retval] VARIANT_BOOL *pvarfMode);
[id(0x006f)]
HRESULT setMode(
[in] BSTR bstrMode,
[in] VARIANT_BOOL varfMode);
[id(0x0070), propget]
HRESULT enableErrorDialogs([out, retval] VARIANT_BOOL *pfEnableErrorDialogs);
[id(0x0070), propput]
HRESULT enableErrorDialogs([in] VARIANT_BOOL pfEnableErrorDialogs);
}
[
odl,
uuid(4a976298-8c0d-11d3-b389-00c04f68574b),
dual,
oleautomation
]
interface IWMPStringCollection : IDispatch
{
[id(0x0191), propget]
HRESULT count([out, retval] long *plCount);
[id(0x0192)]
HRESULT Item(
[in] long lIndex,
[out, retval] BSTR *pbstrString);
}
[
odl,
uuid(8363bc22-b4b4-4b19-989d-1cd765749dd1),
dual,
oleautomation
]
interface IWMPMediaCollection : IDispatch
{
[id(0x01c4)]
HRESULT add(
[in] BSTR bstrURL,
[out, retval] IWMPMedia **ppItem);
[id(0x01c5)]
HRESULT getAll([out, retval] IWMPPlaylist **ppMediaItems);
[id(0x01c6)]
HRESULT getByName(
[in] BSTR bstrName,
[out, retval] IWMPPlaylist **ppMediaItems);
[id(0x01c7)]
HRESULT getByGenre(
[in] BSTR bstrGenre,
[out, retval] IWMPPlaylist **ppMediaItems);
[id(0x01c8)]
HRESULT getByAuthor(
[in] BSTR bstrAuthor,
[out, retval] IWMPPlaylist **ppMediaItems);
[id(0x01c9)]
HRESULT getByAlbum(
[in] BSTR bstrAlbum,
[out, retval] IWMPPlaylist **ppMediaItems);
[id(0x01ca)]
HRESULT getByAttribute(
[in] BSTR bstrAttribute,
[in] BSTR bstrValue,
[out, retval] IWMPPlaylist **ppMediaItems);
[id(0x01cb)]
HRESULT remove(
[in] IWMPMedia *pItem,
[in] VARIANT_BOOL varfDeleteFile);
[id(0x01cd)]
HRESULT getAttributeStringCollection(
[in] BSTR bstrAttribute,
[in] BSTR bstrMediaType,
[out, retval] IWMPStringCollection **ppStringCollection);
[id(0x01d6)]
HRESULT getMediaAtom(
[in] BSTR bstrItemName,
[out, retval] long *plAtom);
[id(0x01d7)]
HRESULT setDeleted(
[in] IWMPMedia *pItem,
[in] VARIANT_BOOL varfIsDeleted);
[id(0x01d8)]
HRESULT isDeleted(
[in] IWMPMedia *pItem,
[out, retval] VARIANT_BOOL *pvarfIsDeleted);
}
[
odl,
uuid(679409c0-99f7-11d3-9fb7-00105aa620bb),
dual,
oleautomation
]
interface IWMPPlaylistArray : IDispatch
{
[id(0x01f5), propget]
HRESULT count([out, retval] long *plCount);
[id(0x01f6)]
HRESULT Item(
[in] long lIndex,
[out, retval] IWMPPlaylist **ppItem);
}
[
odl,
uuid(10a13217-23a7-439b-b1c0-d847c79b7774),
dual,
oleautomation
]
interface IWMPPlaylistCollection : IDispatch
{
[id(0x0228)]
HRESULT newPlaylist(
[in] BSTR bstrName,
[out, retval] IWMPPlaylist **ppItem);
[id(0x0229)]
HRESULT getAll([out, retval] IWMPPlaylistArray **ppPlaylistArray);
[id(0x022a)]
HRESULT getByName(
[in] BSTR bstrName,
[out, retval] IWMPPlaylistArray **ppPlaylistArray);
[id(0x022c)]
HRESULT remove([in] IWMPPlaylist *pItem);
[id(0x0230)]
HRESULT setDeleted(
[in] IWMPPlaylist *pItem,
[in] VARIANT_BOOL varfIsDeleted);
[id(0x0231)]
HRESULT isDeleted(
[in] IWMPPlaylist *pItem,
[out, retval] VARIANT_BOOL *pvarfIsDeleted);
[id(0x0232)]
HRESULT importPlaylist(
[in] IWMPPlaylist *pItem,
[out, retval] IWMPPlaylist **ppImportedItem);
}
[
odl,
uuid(ec21b779-edef-462d-bba4-ad9dde2b29a7),
dual,
oleautomation
]
interface IWMPNetwork : IDispatch
{
[id(0x0321), propget]
HRESULT bandWidth([out, retval] long *plBandwidth);
[id(0x0322), propget]
HRESULT recoveredPackets([out, retval] long *plRecoveredPackets);
[id(0x0323), propget]
HRESULT sourceProtocol([out, retval] BSTR *pbstrSourceProtocol);
[id(0x0324), propget]
HRESULT receivedPackets([out, retval] long *plReceivedPackets);
[id(0x0325), propget]
HRESULT lostPackets([out, retval] long *plLostPackets);
[id(0x0326), propget]
HRESULT receptionQuality([out, retval] long *plReceptionQuality);
[id(0x0327), propget]
HRESULT bufferingCount([out, retval] long *plBufferingCount);
[id(0x0328), propget]
HRESULT bufferingProgress([out, retval] long *plBufferingProgress);
[id(0x0329), propget]
HRESULT bufferingTime([out, retval] long *plBufferingTime);
[id(0x0329), propput]
HRESULT bufferingTime([in] long plBufferingTime);
[id(0x032a), propget]
HRESULT frameRate([out, retval] long *plFrameRate);
[id(0x032b), propget]
HRESULT maxBitRate([out, retval] long *plBitRate);
[id(0x032c), propget]
HRESULT bitRate([out, retval] long *plBitRate);
[id(0x032d)]
HRESULT getProxySettings(
[in] BSTR bstrProtocol,
[out, retval] long *plProxySetting);
[id(0x032e)]
HRESULT setProxySettings(
[in] BSTR bstrProtocol,
[in] long lProxySetting);
[id(0x032f)]
HRESULT getProxyName(
[in] BSTR bstrProtocol,
[out, retval] BSTR *pbstrProxyName);
[id(0x0330)]
HRESULT setProxyName(
[in] BSTR bstrProtocol,
[in] BSTR bstrProxyName);
[id(0x0331)]
HRESULT getProxyPort(
[in] BSTR bstrProtocol,
[out, retval] long *lProxyPort);
[id(0x0332)]
HRESULT setProxyPort(
[in] BSTR bstrProtocol,
[in] long lProxyPort);
[id(0x0333)]
HRESULT getProxyExceptionList(
[in] BSTR bstrProtocol,
[out, retval] BSTR *pbstrExceptionList);
[id(0x0334)]
HRESULT setProxyExceptionList(
[in] BSTR bstrProtocol,
[in] BSTR pbstrExceptionList);
[id(0x0335)]
HRESULT getProxyBypassForLocal(
[in] BSTR bstrProtocol,
[out, retval] VARIANT_BOOL *pfBypassForLocal);
[id(0x0336)]
HRESULT setProxyBypassForLocal(
[in] BSTR bstrProtocol,
[in] VARIANT_BOOL fBypassForLocal);
[id(0x0337), propget]
HRESULT maxBandwidth([out, retval] long *lMaxBandwidth);
[id(0x0337), propput]
HRESULT maxBandwidth([in] long lMaxBandwidth);
[id(0x0338), propget]
HRESULT downloadProgress([out, retval] long *plDownloadProgress);
[id(0x0339), propget]
HRESULT encodedFrameRate([out, retval] long *plFrameRate);
[id(0x033a), propget]
HRESULT framesSkipped([out, retval] long *plFrames);
}
[
odl,
uuid(cfab6e98-8730-11d3-b388-00c04f68574b),
dual,
oleautomation
]
interface IWMPCdrom : IDispatch
{
[id(0x00fb), propget]
HRESULT driveSpecifier([out, retval] BSTR *pbstrDrive);
[id(0x00fc), propget]
HRESULT Playlist([out, retval] IWMPPlaylist **ppPlaylist);
[id(0x00fd)]
HRESULT eject();
}
[
odl,
uuid(ee4c8fe2-34b2-11d3-a3bf-006097c9b344),
dual,
oleautomation
]
interface IWMPCdromCollection : IDispatch
{
[id(0x012d), propget]
HRESULT count([out, retval] long *plCount);
[id(0x012e)]
HRESULT Item(
[in] long lIndex,
[out, retval] IWMPCdrom **ppItem);
[id(0x012f)]
HRESULT getByDriveSpecifier(
[in] BSTR bstrDriveSpecifier,
[out, retval] IWMPCdrom **ppCdrom);
}
[
odl,
uuid(8da61686-4668-4a5c-ae5d-803193293dbe),
dual,
oleautomation
]
interface IWMPDVD : IDispatch
{
[id(0x03e9), propget]
HRESULT isAvailable(
[in] BSTR bstrItem,
[out, retval] VARIANT_BOOL *pIsAvailable);
[id(0x03ea), propget]
HRESULT domain([out, retval] BSTR *strDomain);
[id(0x03eb)]
HRESULT topMenu();
[id(0x03ec)]
HRESULT titleMenu();
[id(0x03ed)]
HRESULT back();
[id(0x03ee)]
HRESULT resume();
}
[
odl,
uuid(4f2df574-c588-11d3-9ed0-00c04fb6e937),
dual,
oleautomation
]
interface IWMPClosedCaption : IDispatch
{
[id(0x03b7), propget]
HRESULT SAMIStyle([out, retval] BSTR *pbstrSAMIStyle);
[id(0x03b7), propput]
HRESULT SAMIStyle([in] BSTR pbstrSAMIStyle);
[id(0x03b8), propget]
HRESULT SAMILang([out, retval] BSTR *pbstrSAMILang);
[id(0x03b8), propput]
HRESULT SAMILang([in] BSTR pbstrSAMILang);
[id(0x03b9), propget]
HRESULT SAMIFileName([out, retval] BSTR *pbstrSAMIFileName);
[id(0x03b9), propput]
HRESULT SAMIFileName([in] BSTR pbstrSAMIFileName);
[id(0x03ba), propget]
HRESULT captioningId([out, retval] BSTR *pbstrCaptioningID);
[id(0x03ba), propput]
HRESULT captioningId([in] BSTR pbstrCaptioningID);
}
[
odl,
uuid(3614c646-3b3b-4de7-a81e-930e3f2127b3),
dual,
oleautomation
]
interface IWMPErrorItem : IDispatch
{
[id(0x0385), propget]
HRESULT errorCode([out, retval] long *phr);
[id(0x0386), propget]
HRESULT errorDescription([out, retval] BSTR *pbstrDescription);
[id(0x0387), propget]
HRESULT errorContext([out, retval] VARIANT *pvarContext);
[id(0x0388), propget]
HRESULT remedy([out, retval] long *plRemedy);
[id(0x0389), propget]
HRESULT customUrl([out, retval] BSTR *pbstrCustomUrl);
}
[
odl,
uuid(a12dcf7d-14ab-4c1b-a8cd-63909f06025b),
dual,
oleautomation
]
interface IWMPError : IDispatch
{
[id(0x0353)]
HRESULT clearErrorQueue();
[id(0x0354), propget]
HRESULT errorCount([out, retval] long *plNumErrors);
[id(0x0355), propget]
HRESULT Item(
[in] long dwIndex,
[out, retval] IWMPErrorItem **ppErrorItem);
[id(0x0356)]
HRESULT webHelp();
}
[
odl,
uuid(40897764-ceab-47be-ad4a-8e28537f9bbf),
dual,
oleautomation
]
interface IWMPPlayerApplication : IDispatch
{
[id(0x044d)]
HRESULT switchToPlayerApplication();
[id(0x044e)]
HRESULT switchToControl();
[id(0x044f), propget]
HRESULT playerDocked([out, retval] VARIANT_BOOL* pbPlayerDocked);
[id(0x0450), propget]
HRESULT hasDisplay([out, retval] VARIANT_BOOL *pbHasDisplay);
}
[
odl,
uuid(d84cca99-cce2-11d2-9ecc-0000f8085981),
dual,
oleautomation
]
interface IWMPCore : IDispatch
{
[id(0x0003)]
HRESULT close();
[id(0x0001), propget]
HRESULT URL([out, retval] BSTR *pbstrURL);
[id(0x0001), propput]
HRESULT URL([in] BSTR pbstrURL);
[id(0x0002), propget]
HRESULT openState([out, retval] WMPOpenState *pwmpos);
[id(0x000a), propget]
HRESULT playState([out, retval] WMPPlayState *pwmpps);
[id(0x0004), propget]
HRESULT controls([out, retval] IWMPControls **ppControl);
[id(0x0005), propget]
HRESULT settings([out, retval] IWMPSettings **ppSettings);
[id(0x0006), propget]
HRESULT currentMedia([out, retval] IWMPMedia **ppMedia);
[id(0x0006), propput]
HRESULT currentMedia([in] IWMPMedia *ppMedia);
[id(0x0008), propget]
HRESULT mediaCollection([out, retval] IWMPMediaCollection **ppMediaCollection);
[id(0x0009), propget]
HRESULT playlistCollection([out, retval] IWMPPlaylistCollection **ppPlaylistCollection);
[id(0x000b), propget]
HRESULT versionInfo([out, retval] BSTR *pbstrVersionInfo);
[id(0x000c)]
HRESULT launchURL([in] BSTR bstrURL);
[id(0x0007), propget]
HRESULT network([out, retval] IWMPNetwork **ppQNI);
[id(0x000d), propget]
HRESULT currentPlaylist([out, retval] IWMPPlaylist **ppPL);
[id(0x000d), propput]
HRESULT currentPlaylist([in] IWMPPlaylist *ppPL);
[id(0x000e), propget]
HRESULT cdromCollection([out, retval] IWMPCdromCollection **ppCdromCollection);
[id(0x000f), propget]
HRESULT closedCaption([out, retval] IWMPClosedCaption **ppClosedCaption);
[id(0x0010), propget]
HRESULT isOnline([out, retval] VARIANT_BOOL *pfOnline);
[id(0x0011), propget]
HRESULT Error([out, retval] IWMPError **ppError);
[id(0x0012), propget]
HRESULT status([out, retval] BSTR *pbstrStatus);
}
[
odl,
uuid(bc17e5B7-7561-4c18-bb90-17d485775659),
dual,
oleautomation
]
interface IWMPCore2 : IWMPCore {
[id(0x0028), propget]
HRESULT dvd([out, retval] IWMPDVD **ppDVD);
}
[
odl,
uuid(7587c667-628f-499f-88e7-6A6f4e888464),
dual,
oleautomation
]
interface IWMPCore3 : IWMPCore2
{
[id(0x0029)]
HRESULT newPlaylist(
[in] BSTR bstrName,
[in] BSTR bstrURL,
[out, retval] IWMPPlaylist **ppPlaylist);
[id(0x002a)]
HRESULT newMedia(
[in] BSTR bstrURL,
[out, retval] IWMPMedia **ppMedia);
}
[
odl,
uuid(6c497d62-8919-413c-82db-e935fb3ec584),
dual,
oleautomation
]
interface IWMPPlayer4 : IWMPCore3
{
[id(0x0013), propget]
HRESULT enabled([out, retval] VARIANT_BOOL *pbEnabled);
[id(0x0013), propput]
HRESULT enabled([in] VARIANT_BOOL pbEnabled);
[id(0x0015), propget]
HRESULT fullScreen([out, retval] VARIANT_BOOL *pbFullScreen);
[id(0x0015), propput]
HRESULT fullScreen(VARIANT_BOOL pbFullScreen);
[id(0x0016), propget]
HRESULT enableContextMenu([out, retval] VARIANT_BOOL *pbEnableContextMenu);
[id(0x0016), propput]
HRESULT enableContextMenu(VARIANT_BOOL pbEnableContextMenu);
[id(0x0017), propput]
HRESULT uiMode([in] BSTR pbstrMode);
[id(0x0017), propget]
HRESULT uiMode([out, retval] BSTR *pbstrMode);
[id(0x0018), propget]
HRESULT stretchToFit([out, retval] VARIANT_BOOL *pbEnabled);
[id(0x0018), propput]
HRESULT stretchToFit([in] VARIANT_BOOL pbEnabled);
[id(0x0019), propget]
HRESULT windowlessVideo([out, retval] VARIANT_BOOL *pbEnabled);
[id(0x0019), propput]
HRESULT windowlessVideo([in] VARIANT_BOOL pbEnabled);
[id(0x001a), propget]
HRESULT isRemote([out, retval] VARIANT_BOOL *pvarfIsRemote);
[id(0x001b), propget]
HRESULT playerApplication([out, retval] IWMPPlayerApplication **ppIWMPPlayerApplication);
[id(0x001c)]
HRESULT openPlayer([in] BSTR bstrURL);
}
[
odl,
uuid(6BF52A4F-394A-11D3-B153-00C04F79FAA6),
dual,
oleautomation
]
interface IWMPPlayer : IWMPCore {
[id(0x00000013), propget]
HRESULT enabled([out, retval] VARIANT_BOOL* pbEnabled);
[id(0x00000013), propput]
HRESULT enabled([in] VARIANT_BOOL pbEnabled);
[id(0x00000015), propget]
HRESULT fullScreen([out, retval] VARIANT_BOOL* pbFullScreen);
[id(0x00000015), propput]
HRESULT fullScreen(VARIANT_BOOL pbFullScreen);
[id(0x00000016), propget]
HRESULT enableContextMenu([out, retval] VARIANT_BOOL* pbEnableContextMenu);
[id(0x00000016), propput]
HRESULT enableContextMenu(VARIANT_BOOL pbEnableContextMenu);
[id(0x00000017), propput]
HRESULT uiMode([in] BSTR pbstrMode);
[id(0x00000017), propget]
HRESULT uiMode([out, retval] BSTR* pbstrMode);
};
[
odl,
uuid(82a2986c-0293-4fd0-b279-b21b86c058be),
oleautomation
]
interface IWMPSyncDevice : IUnknown
{
[propget]
HRESULT friendlyName([out, retval] BSTR *name);
[propput]
HRESULT friendlyName([in] BSTR name);
[propget]
HRESULT deviceName([out, retval] BSTR *name);
[propget]
HRESULT deviceId([out, retval] BSTR *device);
[propget]
HRESULT partnershipIndex([out, retval] long *index);
[propget]
HRESULT connected([out, retval] VARIANT_BOOL *connected);
[propget]
HRESULT status([out, retval] WMPDeviceStatus *status);
[propget]
HRESULT syncState([out, retval] WMPSyncState *state);
[propget]
HRESULT progress([out, retval] long *progress);
HRESULT getItemInfo(
[in] BSTR name,
[out, retval] BSTR *val);
HRESULT createPartnership([in] VARIANT_BOOL showui);
HRESULT deletePartnership();
HRESULT start();
HRESULT stop();
HRESULT showSettings();
HRESULT isIdentical(
[in] IWMPSyncDevice *device,
[out, retval] VARIANT_BOOL *ret);
}
[
odl,
uuid(88afb4b2-140a-44d2-91e6-4543da467cd1),
oleautomation
]
interface IWMPSyncDevice2 : IWMPSyncDevice
{
HRESULT setItemInfo(
[in] BSTR name,
[in] BSTR val);
}
[
odl,
uuid(56e2294f-69ed-4629-a869-aea72c0dcc2c),
oleautomation
]
interface IWMPCdromRip : IUnknown
{
[propget]
HRESULT ripState([out, retval] WMPRipState *state);
[propget]
HRESULT ripProgress([out, retval] long *progress);
HRESULT startRip();
HRESULT stopRip();
}
[
odl,
uuid(bd94dbeb-417f-4928-aa06-087d56ed9b59),
oleautomation
]
interface IWMPCdromBurn : IUnknown
{
HRESULT isAvailable(
[in] BSTR item,
[out, retval] VARIANT_BOOL *available);
HRESULT getItemInfo(
[in] BSTR item,
[out, retval] BSTR *val);
[propget]
HRESULT label([out, retval] BSTR *label);
[propput]
HRESULT label([in] BSTR label);
[propget]
HRESULT burnFormat([out, retval] WMPBurnFormat *format);
[propput]
HRESULT burnFormat([in] WMPBurnFormat format);
[propget]
HRESULT burnPlaylist([out, retval] IWMPPlaylist **playlist);
[propput]
HRESULT burnPlaylist([in] IWMPPlaylist *playlist);
HRESULT refreshStatus();
[propget]
HRESULT burnState([out, retval] WMPBurnState *state);
[propget]
HRESULT burnProgress([out, retval] long *progress);
HRESULT startBurn();
HRESULT stopBurn();
HRESULT erase();
}
[
odl,
uuid(3df47861-7df1-4c1f-a81b-4c26f0f7a7c6),
oleautomation
]
interface IWMPLibrary : IUnknown
{
[propget]
HRESULT name([out, retval] BSTR *name);
[propget]
HRESULT type([out, retval] WMPLibraryType *type);
[propget]
HRESULT mediaCollection([out, retval] IWMPMediaCollection **collection);
HRESULT isIdentical(
[in] IWMPLibrary *wmplibrary,
[out, retval] VARIANT_BOOL *ret);
}
[
uuid(19a6627b-da9e-47c1-bb23-00b5e668236a),
odl
]
interface IWMPEvents : IUnknown
{
void OpenStateChange([in] long state);
void PlayStateChange([in] long state);
void AudioLanguageChange([in] long lang);
void StatusChange();
void ScriptCommand(
[in] BSTR type,
[in] BSTR param);
void NewStream();
void Disconnect([in] long result);
void Buffering([in] VARIANT_BOOL start);
void Error();
void Warning(
[in] long warning,
[in] long param,
[in] BSTR description);
void EndOfStream([in] long result);
void PositionChange(
[in] double old_position,
[in] double new_position);
void MarkerHit([in] long marker);
void DurationUnitChange([in] long duration);
void CdromMediaChange([in] long num);
void PlaylistChange(
[in] IDispatch *playlist,
[in] WMPPlaylistChangeEventType change);
void CurrentPlaylistChange([in] WMPPlaylistChangeEventType change);
void CurrentPlaylistItemAvailable([in] BSTR item);
void MediaChange([in] IDispatch *item);
void CurrentMediaItemAvailable([in] BSTR name);
void CurrentItemChange([in] IDispatch *media);
void MediaCollectionChange();
void MediaCollectionAttributeStringAdded(
[in] BSTR name,
[in] BSTR val);
void MediaCollectionAttributeStringRemoved(
[in] BSTR name,
[in] BSTR val);
void MediaCollectionAttributeStringChanged(
[in] BSTR name,
[in] BSTR old_val,
[in] BSTR new_val);
void PlaylistCollectionChange();
void PlaylistCollectionPlaylistAdded([in] BSTR name);
void PlaylistCollectionPlaylistRemoved([in] BSTR name);
void PlaylistCollectionPlaylistSetAsDeleted(
[in] BSTR name,
[in] VARIANT_BOOL deleted);
void ModeChange(
[in] BSTR ModeName,
[in] VARIANT_BOOL value);
void MediaError([in] IDispatch *media);
void OpenPlaylistSwitch([in] IDispatch *item);
void DomainChange([in] BSTR domain);
void SwitchedToPlayerApplication();
void SwitchedToControl();
void PlayerDockedStateChange();
void PlayerReconnect();
void Click(
[in] short button,
[in] short shift_state,
[in] long x,
[in] long y);
void DoubleClick(
[in] short button,
[in] short shift_state,
[in] long fX,
[in] long fY);
void KeyDown(
[in] short keycode,
[in] short shift_state);
void KeyPress([in] short ascii);
void KeyUp(
[in] short keycode,
[in] short shift_state);
void MouseDown(
[in] short button,
[in] short nShiftState,
[in] long x,
[in] long y);
void MouseMove(
[in] short button,
[in] short shift_state,
[in] long x,
[in] long y);
void MouseUp(
[in] short button,
[in] short shift_state,
[in] long x,
[in] long y);
}
[
uuid(1e7601fa-47ea-4107-9ea9-9004ed9684ff),
odl
]
interface IWMPEvents2 : IWMPEvents
{
void DeviceConnect([in] IWMPSyncDevice *device);
void DeviceDisconnect([in] IWMPSyncDevice *device);
void DeviceStatusChange(
[in] IWMPSyncDevice *device,
[in] WMPDeviceStatus status);
void DeviceSyncStateChange(
[in] IWMPSyncDevice *device,
[in] WMPSyncState state);
void DeviceSyncError(
[in] IWMPSyncDevice *device,
[in] IDispatch *media);
void CreatePartnershipComplete(
[in] IWMPSyncDevice *device,
[in] HRESULT result);
}
[
uuid(1f504270-a66b-4223-8e96-26a06c63d69f),
odl
]
interface IWMPEvents3 : IWMPEvents2
{
void CdromRipStateChange(
[in] IWMPCdromRip *rip,
[in] WMPRipState state);
void CdromRipMediaError(
[in] IWMPCdromRip *rip,
[in] IDispatch *media);
void CdromBurnStateChange(
[in] IWMPCdromBurn *burn,
[in] WMPBurnState state);
void CdromBurnMediaError(
[in] IWMPCdromBurn *burn,
[in] IDispatch *media);
void CdromBurnError(
[in] IWMPCdromBurn *burn,
[in] HRESULT error);
void LibraryConnect(
[in] IWMPLibrary *wmplibrary);
void LibraryDisconnect(
[in] IWMPLibrary *wmplibrary);
void FolderScanStateChange(
[in] WMPFolderScanState state);
void StringCollectionChange(
[in] IDispatch *collection,
[in] WMPStringCollectionChangeEventType change,
[in] long index);
void MediaCollectionMediaAdded(
[in] IDispatch *media);
void MediaCollectionMediaRemoved(
[in] IDispatch *media);
}
[
uuid(26dabcfa-306b-404d-9a6f-630a8405048d),
odl
]
interface IWMPEvents4 : IWMPEvents3
{
void DeviceEstimation(
[in] IWMPSyncDevice *device,
[in] HRESULT result,
[in] LONGLONG used_space,
[in] LONGLONG estimated_space);
}
[
hidden,
uuid(6bf52a51-394a-11d3-b153-00c04f79faa6)
]
interface _WMPOCXEvents : IDispatch
{}
[
helpstring("Windows Media Player"),
threading(apartment),
progid("WMPlayer.OCX.7"),
vi_progid("WMPlayer.OCX"),
uuid(6bf52a52-394a-11d3-b153-00c04f79faa6)
]
coclass WindowsMediaPlayer
{
[default] interface IWMPPlayer4;
/* interface IWMPPlayer3; */
/* interface IWMPPlayer2; */
interface IWMPPlayer;
interface IWMPControls;
interface IWMPSettings;
interface IWMPPlaylist;
interface IWMPMedia;
interface IWMPMediaCollection;
interface IWMPPlaylistCollection;
interface IWMPCdromCollection;
interface IWMPError;
interface IWMPErrorItem;
/* interface IWMPErrorItem2; */
interface IWMPClosedCaption;
interface IWMPDVD;
/* interface IWMPControls2; */
/* interface IWMPMedia2; */
/* interface IWMPMedia3; */
/* interface IWMPMetadataPicture; */
/* interface IWMPMetadataText; */
/* interface IWMPSettings2; */
/* interface IWMPControls3; */
/* interface IWMPClosedCaption2; */
/* interface IWMPMediaCollection2; */
/* interface IWMPStringCollection2; */
[default, source] dispinterface _WMPOCXEvents;
}
}