forked from hackedteam/core-win32
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqedit.h
6589 lines (4441 loc) · 209 KB
/
qedit.h
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
/* this ALWAYS GENERATED file contains the definitions for the interfaces */
/* File created by MIDL compiler version 7.00.0499 */
/* Compiler settings for qedit.idl:
Oicf, W1, Zp8, env=Win32 (32b run)
protocol : dce , ms_ext, c_ext, robust
error checks: allocation ref bounds_check enum stub_data
VC __declspec() decoration level:
__declspec(uuid()), __declspec(selectany), __declspec(novtable)
DECLSPEC_UUID(), MIDL_INTERFACE()
*/
//@@MIDL_FILE_HEADING( )
#pragma warning( disable: 4049 ) /* more than 64k source lines */
/* verify that the <rpcndr.h> version is high enough to compile this file*/
#ifndef __REQUIRED_RPCNDR_H_VERSION__
#define __REQUIRED_RPCNDR_H_VERSION__ 500
#endif
/* verify that the <rpcsal.h> version is high enough to compile this file*/
#ifndef __REQUIRED_RPCSAL_H_VERSION__
#define __REQUIRED_RPCSAL_H_VERSION__ 100
#endif
#include "rpc.h"
#include "rpcndr.h"
#ifndef __RPCNDR_H_VERSION__
#error this stub requires an updated version of <rpcndr.h>
#endif // __RPCNDR_H_VERSION__
#ifndef COM_NO_WINDOWS_H
#include "windows.h"
#include "ole2.h"
#endif /*COM_NO_WINDOWS_H*/
#ifndef __qedit_h__
#define __qedit_h__
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
#pragma once
#endif
/* Forward Declarations */
#ifndef __IPropertySetter_FWD_DEFINED__
#define __IPropertySetter_FWD_DEFINED__
typedef interface IPropertySetter IPropertySetter;
#endif /* __IPropertySetter_FWD_DEFINED__ */
#ifndef __IDxtCompositor_FWD_DEFINED__
#define __IDxtCompositor_FWD_DEFINED__
typedef interface IDxtCompositor IDxtCompositor;
#endif /* __IDxtCompositor_FWD_DEFINED__ */
#ifndef __IDxtAlphaSetter_FWD_DEFINED__
#define __IDxtAlphaSetter_FWD_DEFINED__
typedef interface IDxtAlphaSetter IDxtAlphaSetter;
#endif /* __IDxtAlphaSetter_FWD_DEFINED__ */
#ifndef __IDxtJpeg_FWD_DEFINED__
#define __IDxtJpeg_FWD_DEFINED__
typedef interface IDxtJpeg IDxtJpeg;
#endif /* __IDxtJpeg_FWD_DEFINED__ */
#ifndef __IDxtKey_FWD_DEFINED__
#define __IDxtKey_FWD_DEFINED__
typedef interface IDxtKey IDxtKey;
#endif /* __IDxtKey_FWD_DEFINED__ */
#ifndef __IMediaLocator_FWD_DEFINED__
#define __IMediaLocator_FWD_DEFINED__
typedef interface IMediaLocator IMediaLocator;
#endif /* __IMediaLocator_FWD_DEFINED__ */
#ifndef __IMediaDet_FWD_DEFINED__
#define __IMediaDet_FWD_DEFINED__
typedef interface IMediaDet IMediaDet;
#endif /* __IMediaDet_FWD_DEFINED__ */
#ifndef __IGrfCache_FWD_DEFINED__
#define __IGrfCache_FWD_DEFINED__
typedef interface IGrfCache IGrfCache;
#endif /* __IGrfCache_FWD_DEFINED__ */
#ifndef __IRenderEngine_FWD_DEFINED__
#define __IRenderEngine_FWD_DEFINED__
typedef interface IRenderEngine IRenderEngine;
#endif /* __IRenderEngine_FWD_DEFINED__ */
#ifndef __IRenderEngine2_FWD_DEFINED__
#define __IRenderEngine2_FWD_DEFINED__
typedef interface IRenderEngine2 IRenderEngine2;
#endif /* __IRenderEngine2_FWD_DEFINED__ */
#ifndef __IFindCompressorCB_FWD_DEFINED__
#define __IFindCompressorCB_FWD_DEFINED__
typedef interface IFindCompressorCB IFindCompressorCB;
#endif /* __IFindCompressorCB_FWD_DEFINED__ */
#ifndef __ISmartRenderEngine_FWD_DEFINED__
#define __ISmartRenderEngine_FWD_DEFINED__
typedef interface ISmartRenderEngine ISmartRenderEngine;
#endif /* __ISmartRenderEngine_FWD_DEFINED__ */
#ifndef __IAMTimelineObj_FWD_DEFINED__
#define __IAMTimelineObj_FWD_DEFINED__
typedef interface IAMTimelineObj IAMTimelineObj;
#endif /* __IAMTimelineObj_FWD_DEFINED__ */
#ifndef __IAMTimelineEffectable_FWD_DEFINED__
#define __IAMTimelineEffectable_FWD_DEFINED__
typedef interface IAMTimelineEffectable IAMTimelineEffectable;
#endif /* __IAMTimelineEffectable_FWD_DEFINED__ */
#ifndef __IAMTimelineEffect_FWD_DEFINED__
#define __IAMTimelineEffect_FWD_DEFINED__
typedef interface IAMTimelineEffect IAMTimelineEffect;
#endif /* __IAMTimelineEffect_FWD_DEFINED__ */
#ifndef __IAMTimelineTransable_FWD_DEFINED__
#define __IAMTimelineTransable_FWD_DEFINED__
typedef interface IAMTimelineTransable IAMTimelineTransable;
#endif /* __IAMTimelineTransable_FWD_DEFINED__ */
#ifndef __IAMTimelineSplittable_FWD_DEFINED__
#define __IAMTimelineSplittable_FWD_DEFINED__
typedef interface IAMTimelineSplittable IAMTimelineSplittable;
#endif /* __IAMTimelineSplittable_FWD_DEFINED__ */
#ifndef __IAMTimelineTrans_FWD_DEFINED__
#define __IAMTimelineTrans_FWD_DEFINED__
typedef interface IAMTimelineTrans IAMTimelineTrans;
#endif /* __IAMTimelineTrans_FWD_DEFINED__ */
#ifndef __IAMTimelineSrc_FWD_DEFINED__
#define __IAMTimelineSrc_FWD_DEFINED__
typedef interface IAMTimelineSrc IAMTimelineSrc;
#endif /* __IAMTimelineSrc_FWD_DEFINED__ */
#ifndef __IAMTimelineTrack_FWD_DEFINED__
#define __IAMTimelineTrack_FWD_DEFINED__
typedef interface IAMTimelineTrack IAMTimelineTrack;
#endif /* __IAMTimelineTrack_FWD_DEFINED__ */
#ifndef __IAMTimelineVirtualTrack_FWD_DEFINED__
#define __IAMTimelineVirtualTrack_FWD_DEFINED__
typedef interface IAMTimelineVirtualTrack IAMTimelineVirtualTrack;
#endif /* __IAMTimelineVirtualTrack_FWD_DEFINED__ */
#ifndef __IAMTimelineComp_FWD_DEFINED__
#define __IAMTimelineComp_FWD_DEFINED__
typedef interface IAMTimelineComp IAMTimelineComp;
#endif /* __IAMTimelineComp_FWD_DEFINED__ */
#ifndef __IAMTimelineGroup_FWD_DEFINED__
#define __IAMTimelineGroup_FWD_DEFINED__
typedef interface IAMTimelineGroup IAMTimelineGroup;
#endif /* __IAMTimelineGroup_FWD_DEFINED__ */
#ifndef __IAMTimeline_FWD_DEFINED__
#define __IAMTimeline_FWD_DEFINED__
typedef interface IAMTimeline IAMTimeline;
#endif /* __IAMTimeline_FWD_DEFINED__ */
#ifndef __IXml2Dex_FWD_DEFINED__
#define __IXml2Dex_FWD_DEFINED__
typedef interface IXml2Dex IXml2Dex;
#endif /* __IXml2Dex_FWD_DEFINED__ */
#ifndef __IAMErrorLog_FWD_DEFINED__
#define __IAMErrorLog_FWD_DEFINED__
typedef interface IAMErrorLog IAMErrorLog;
#endif /* __IAMErrorLog_FWD_DEFINED__ */
#ifndef __IAMSetErrorLog_FWD_DEFINED__
#define __IAMSetErrorLog_FWD_DEFINED__
typedef interface IAMSetErrorLog IAMSetErrorLog;
#endif /* __IAMSetErrorLog_FWD_DEFINED__ */
#ifndef __ISampleGrabberCB_FWD_DEFINED__
#define __ISampleGrabberCB_FWD_DEFINED__
typedef interface ISampleGrabberCB ISampleGrabberCB;
#endif /* __ISampleGrabberCB_FWD_DEFINED__ */
#ifndef __ISampleGrabber_FWD_DEFINED__
#define __ISampleGrabber_FWD_DEFINED__
typedef interface ISampleGrabber ISampleGrabber;
#endif /* __ISampleGrabber_FWD_DEFINED__ */
#ifndef __IResize_FWD_DEFINED__
#define __IResize_FWD_DEFINED__
typedef interface IResize IResize;
#endif /* __IResize_FWD_DEFINED__ */
#ifndef __AMTimeline_FWD_DEFINED__
#define __AMTimeline_FWD_DEFINED__
#ifdef __cplusplus
typedef class AMTimeline AMTimeline;
#else
typedef struct AMTimeline AMTimeline;
#endif /* __cplusplus */
#endif /* __AMTimeline_FWD_DEFINED__ */
#ifndef __AMTimelineObj_FWD_DEFINED__
#define __AMTimelineObj_FWD_DEFINED__
#ifdef __cplusplus
typedef class AMTimelineObj AMTimelineObj;
#else
typedef struct AMTimelineObj AMTimelineObj;
#endif /* __cplusplus */
#endif /* __AMTimelineObj_FWD_DEFINED__ */
#ifndef __AMTimelineSrc_FWD_DEFINED__
#define __AMTimelineSrc_FWD_DEFINED__
#ifdef __cplusplus
typedef class AMTimelineSrc AMTimelineSrc;
#else
typedef struct AMTimelineSrc AMTimelineSrc;
#endif /* __cplusplus */
#endif /* __AMTimelineSrc_FWD_DEFINED__ */
#ifndef __AMTimelineTrack_FWD_DEFINED__
#define __AMTimelineTrack_FWD_DEFINED__
#ifdef __cplusplus
typedef class AMTimelineTrack AMTimelineTrack;
#else
typedef struct AMTimelineTrack AMTimelineTrack;
#endif /* __cplusplus */
#endif /* __AMTimelineTrack_FWD_DEFINED__ */
#ifndef __AMTimelineComp_FWD_DEFINED__
#define __AMTimelineComp_FWD_DEFINED__
#ifdef __cplusplus
typedef class AMTimelineComp AMTimelineComp;
#else
typedef struct AMTimelineComp AMTimelineComp;
#endif /* __cplusplus */
#endif /* __AMTimelineComp_FWD_DEFINED__ */
#ifndef __AMTimelineGroup_FWD_DEFINED__
#define __AMTimelineGroup_FWD_DEFINED__
#ifdef __cplusplus
typedef class AMTimelineGroup AMTimelineGroup;
#else
typedef struct AMTimelineGroup AMTimelineGroup;
#endif /* __cplusplus */
#endif /* __AMTimelineGroup_FWD_DEFINED__ */
#ifndef __AMTimelineTrans_FWD_DEFINED__
#define __AMTimelineTrans_FWD_DEFINED__
#ifdef __cplusplus
typedef class AMTimelineTrans AMTimelineTrans;
#else
typedef struct AMTimelineTrans AMTimelineTrans;
#endif /* __cplusplus */
#endif /* __AMTimelineTrans_FWD_DEFINED__ */
#ifndef __AMTimelineEffect_FWD_DEFINED__
#define __AMTimelineEffect_FWD_DEFINED__
#ifdef __cplusplus
typedef class AMTimelineEffect AMTimelineEffect;
#else
typedef struct AMTimelineEffect AMTimelineEffect;
#endif /* __cplusplus */
#endif /* __AMTimelineEffect_FWD_DEFINED__ */
#ifndef __RenderEngine_FWD_DEFINED__
#define __RenderEngine_FWD_DEFINED__
#ifdef __cplusplus
typedef class RenderEngine RenderEngine;
#else
typedef struct RenderEngine RenderEngine;
#endif /* __cplusplus */
#endif /* __RenderEngine_FWD_DEFINED__ */
#ifndef __SmartRenderEngine_FWD_DEFINED__
#define __SmartRenderEngine_FWD_DEFINED__
#ifdef __cplusplus
typedef class SmartRenderEngine SmartRenderEngine;
#else
typedef struct SmartRenderEngine SmartRenderEngine;
#endif /* __cplusplus */
#endif /* __SmartRenderEngine_FWD_DEFINED__ */
#ifndef __AudMixer_FWD_DEFINED__
#define __AudMixer_FWD_DEFINED__
#ifdef __cplusplus
typedef class AudMixer AudMixer;
#else
typedef struct AudMixer AudMixer;
#endif /* __cplusplus */
#endif /* __AudMixer_FWD_DEFINED__ */
#ifndef __Xml2Dex_FWD_DEFINED__
#define __Xml2Dex_FWD_DEFINED__
#ifdef __cplusplus
typedef class Xml2Dex Xml2Dex;
#else
typedef struct Xml2Dex Xml2Dex;
#endif /* __cplusplus */
#endif /* __Xml2Dex_FWD_DEFINED__ */
#ifndef __MediaLocator_FWD_DEFINED__
#define __MediaLocator_FWD_DEFINED__
#ifdef __cplusplus
typedef class MediaLocator MediaLocator;
#else
typedef struct MediaLocator MediaLocator;
#endif /* __cplusplus */
#endif /* __MediaLocator_FWD_DEFINED__ */
#ifndef __PropertySetter_FWD_DEFINED__
#define __PropertySetter_FWD_DEFINED__
#ifdef __cplusplus
typedef class PropertySetter PropertySetter;
#else
typedef struct PropertySetter PropertySetter;
#endif /* __cplusplus */
#endif /* __PropertySetter_FWD_DEFINED__ */
#ifndef __MediaDet_FWD_DEFINED__
#define __MediaDet_FWD_DEFINED__
#ifdef __cplusplus
typedef class MediaDet MediaDet;
#else
typedef struct MediaDet MediaDet;
#endif /* __cplusplus */
#endif /* __MediaDet_FWD_DEFINED__ */
#ifndef __SampleGrabber_FWD_DEFINED__
#define __SampleGrabber_FWD_DEFINED__
#ifdef __cplusplus
typedef class SampleGrabber SampleGrabber;
#else
typedef struct SampleGrabber SampleGrabber;
#endif /* __cplusplus */
#endif /* __SampleGrabber_FWD_DEFINED__ */
#ifndef __NullRenderer_FWD_DEFINED__
#define __NullRenderer_FWD_DEFINED__
#ifdef __cplusplus
typedef class NullRenderer NullRenderer;
#else
typedef struct NullRenderer NullRenderer;
#endif /* __cplusplus */
#endif /* __NullRenderer_FWD_DEFINED__ */
#ifndef __DxtCompositor_FWD_DEFINED__
#define __DxtCompositor_FWD_DEFINED__
#ifdef __cplusplus
typedef class DxtCompositor DxtCompositor;
#else
typedef struct DxtCompositor DxtCompositor;
#endif /* __cplusplus */
#endif /* __DxtCompositor_FWD_DEFINED__ */
#ifndef __DxtAlphaSetter_FWD_DEFINED__
#define __DxtAlphaSetter_FWD_DEFINED__
#ifdef __cplusplus
typedef class DxtAlphaSetter DxtAlphaSetter;
#else
typedef struct DxtAlphaSetter DxtAlphaSetter;
#endif /* __cplusplus */
#endif /* __DxtAlphaSetter_FWD_DEFINED__ */
#ifndef __DxtJpeg_FWD_DEFINED__
#define __DxtJpeg_FWD_DEFINED__
#ifdef __cplusplus
typedef class DxtJpeg DxtJpeg;
#else
typedef struct DxtJpeg DxtJpeg;
#endif /* __cplusplus */
#endif /* __DxtJpeg_FWD_DEFINED__ */
#ifndef __ColorSource_FWD_DEFINED__
#define __ColorSource_FWD_DEFINED__
#ifdef __cplusplus
typedef class ColorSource ColorSource;
#else
typedef struct ColorSource ColorSource;
#endif /* __cplusplus */
#endif /* __ColorSource_FWD_DEFINED__ */
#ifndef __DxtKey_FWD_DEFINED__
#define __DxtKey_FWD_DEFINED__
#ifdef __cplusplus
typedef class DxtKey DxtKey;
#else
typedef struct DxtKey DxtKey;
#endif /* __cplusplus */
#endif /* __DxtKey_FWD_DEFINED__ */
/* header files for imported files */
#include "oaidl.h"
#include "ocidl.h"
#include "dxtrans.h"
#include "amstream.h"
#ifdef __cplusplus
extern "C"{
#endif
/* interface __MIDL_itf_qedit_0000_0000 */
/* [local] */
//#pragma message("To compile qedit.h you must install the DirectX 9 SDK, to obtain the dxtrans.h header.")
typedef /* [public] */
enum __MIDL___MIDL_itf_qedit_0000_0000_0001
{ DEXTERF_JUMP = 0,
DEXTERF_INTERPOLATE = ( DEXTERF_JUMP + 1 )
} DEXTERF;
typedef /* [public][public][public][public] */ struct __MIDL___MIDL_itf_qedit_0000_0000_0002
{
BSTR Name;
DISPID dispID;
LONG nValues;
} DEXTER_PARAM;
typedef /* [public][public][public][public] */ struct __MIDL___MIDL_itf_qedit_0000_0000_0003
{
VARIANT v;
REFERENCE_TIME rt;
DWORD dwInterp;
} DEXTER_VALUE;
enum __MIDL___MIDL_itf_qedit_0000_0000_0004
{ DEXTER_AUDIO_JUMP = 0,
DEXTER_AUDIO_INTERPOLATE = ( DEXTER_AUDIO_JUMP + 1 )
} ;
typedef /* [public] */ struct __MIDL___MIDL_itf_qedit_0000_0000_0005
{
REFERENCE_TIME rtEnd;
double dLevel;
BOOL bMethod;
} DEXTER_AUDIO_VOLUMEENVELOPE;
enum __MIDL___MIDL_itf_qedit_0000_0000_0006
{ TIMELINE_INSERT_MODE_INSERT = 1,
TIMELINE_INSERT_MODE_OVERLAY = 2
} ;
typedef /* [public][public][public][public][public][public][public][public] */
enum __MIDL___MIDL_itf_qedit_0000_0000_0007
{ TIMELINE_MAJOR_TYPE_COMPOSITE = 1,
TIMELINE_MAJOR_TYPE_TRACK = 2,
TIMELINE_MAJOR_TYPE_SOURCE = 4,
TIMELINE_MAJOR_TYPE_TRANSITION = 8,
TIMELINE_MAJOR_TYPE_EFFECT = 16,
TIMELINE_MAJOR_TYPE_GROUP = 128
} TIMELINE_MAJOR_TYPE;
typedef /* [public] */
enum __MIDL___MIDL_itf_qedit_0000_0000_0008
{ DEXTERF_BOUNDING = -1,
DEXTERF_EXACTLY_AT = 0,
DEXTERF_FORWARDS = 1
} DEXTERF_TRACK_SEARCH_FLAGS;
typedef struct _SCompFmt0
{
long nFormatId;
AM_MEDIA_TYPE MediaType;
} SCompFmt0;
enum __MIDL___MIDL_itf_qedit_0000_0000_0009
{ RESIZEF_STRETCH = 0,
RESIZEF_CROP = ( RESIZEF_STRETCH + 1 ) ,
RESIZEF_PRESERVEASPECTRATIO = ( RESIZEF_CROP + 1 ) ,
RESIZEF_PRESERVEASPECTRATIO_NOLETTERBOX = ( RESIZEF_PRESERVEASPECTRATIO + 1 )
} ;
enum __MIDL___MIDL_itf_qedit_0000_0000_0010
{ CONNECTF_DYNAMIC_NONE = 0,
CONNECTF_DYNAMIC_SOURCES = 0x1,
CONNECTF_DYNAMIC_EFFECTS = 0x2
} ;
enum __MIDL___MIDL_itf_qedit_0000_0000_0011
{ SFN_VALIDATEF_CHECK = 0x1,
SFN_VALIDATEF_POPUP = 0x2,
SFN_VALIDATEF_TELLME = 0x4,
SFN_VALIDATEF_REPLACE = 0x8,
SFN_VALIDATEF_USELOCAL = 0x10,
SFN_VALIDATEF_NOFIND = 0x20,
SFN_VALIDATEF_IGNOREMUTED = 0x40,
SFN_VALIDATEF_END = ( SFN_VALIDATEF_IGNOREMUTED + 1 )
} ;
enum __MIDL___MIDL_itf_qedit_0000_0000_0012
{ DXTKEY_RGB = 0,
DXTKEY_NONRED = ( DXTKEY_RGB + 1 ) ,
DXTKEY_LUMINANCE = ( DXTKEY_NONRED + 1 ) ,
DXTKEY_ALPHA = ( DXTKEY_LUMINANCE + 1 ) ,
DXTKEY_HUE = ( DXTKEY_ALPHA + 1 )
} ;
extern RPC_IF_HANDLE __MIDL_itf_qedit_0000_0000_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_qedit_0000_0000_v0_0_s_ifspec;
#ifndef __IPropertySetter_INTERFACE_DEFINED__
#define __IPropertySetter_INTERFACE_DEFINED__
/* interface IPropertySetter */
/* [unique][helpstring][uuid][object] */
EXTERN_C const IID IID_IPropertySetter;
#if defined(__cplusplus) && !defined(CINTERFACE)
MIDL_INTERFACE("AE9472BD-B0C3-11D2-8D24-00A0C9441E20")
IPropertySetter : public IUnknown
{
public:
virtual HRESULT STDMETHODCALLTYPE LoadXML(
/* [in] */ __RPC__in_opt IUnknown *pxml) = 0;
virtual HRESULT STDMETHODCALLTYPE PrintXML(
/* [out] */ __RPC__out char *pszXML,
/* [in] */ int cbXML,
/* [out] */ __RPC__out int *pcbPrinted,
/* [in] */ int indent) = 0;
virtual HRESULT STDMETHODCALLTYPE CloneProps(
/* [out] */ __RPC__deref_out_opt IPropertySetter **ppSetter,
/* [in] */ REFERENCE_TIME rtStart,
/* [in] */ REFERENCE_TIME rtStop) = 0;
virtual HRESULT STDMETHODCALLTYPE AddProp(
/* [in] */ DEXTER_PARAM Param,
/* [in] */ __RPC__in DEXTER_VALUE *paValue) = 0;
virtual HRESULT STDMETHODCALLTYPE GetProps(
/* [out] */ __RPC__out LONG *pcParams,
/* [out] */ __RPC__deref_out_opt DEXTER_PARAM **paParam,
/* [out] */ __RPC__deref_out_opt DEXTER_VALUE **paValue) = 0;
virtual HRESULT STDMETHODCALLTYPE FreeProps(
/* [in] */ LONG cParams,
/* [in] */ __RPC__in DEXTER_PARAM *paParam,
/* [in] */ __RPC__in DEXTER_VALUE *paValue) = 0;
virtual HRESULT STDMETHODCALLTYPE ClearProps( void) = 0;
virtual HRESULT STDMETHODCALLTYPE SaveToBlob(
/* [out] */ __RPC__out LONG *pcSize,
/* [out] */ __RPC__deref_out_opt BYTE **ppb) = 0;
virtual HRESULT STDMETHODCALLTYPE LoadFromBlob(
/* [in] */ LONG cSize,
/* [in] */ __RPC__in BYTE *pb) = 0;
virtual HRESULT STDMETHODCALLTYPE SetProps(
/* [in] */ __RPC__in_opt IUnknown *pTarget,
/* [in] */ REFERENCE_TIME rtNow) = 0;
virtual HRESULT STDMETHODCALLTYPE PrintXMLW(
/* [out] */ __RPC__out WCHAR *pszXML,
/* [in] */ int cchXML,
/* [out] */ __RPC__out int *pcchPrinted,
/* [in] */ int indent) = 0;
};
#else /* C style interface */
typedef struct IPropertySetterVtbl
{
BEGIN_INTERFACE
HRESULT ( STDMETHODCALLTYPE *QueryInterface )(
IPropertySetter * This,
/* [in] */ __RPC__in REFIID riid,
/* [iid_is][out] */
__RPC__deref_out void **ppvObject);
ULONG ( STDMETHODCALLTYPE *AddRef )(
IPropertySetter * This);
ULONG ( STDMETHODCALLTYPE *Release )(
IPropertySetter * This);
HRESULT ( STDMETHODCALLTYPE *LoadXML )(
IPropertySetter * This,
/* [in] */ __RPC__in_opt IUnknown *pxml);
HRESULT ( STDMETHODCALLTYPE *PrintXML )(
IPropertySetter * This,
/* [out] */ __RPC__out char *pszXML,
/* [in] */ int cbXML,
/* [out] */ __RPC__out int *pcbPrinted,
/* [in] */ int indent);
HRESULT ( STDMETHODCALLTYPE *CloneProps )(
IPropertySetter * This,
/* [out] */ __RPC__deref_out_opt IPropertySetter **ppSetter,
/* [in] */ REFERENCE_TIME rtStart,
/* [in] */ REFERENCE_TIME rtStop);
HRESULT ( STDMETHODCALLTYPE *AddProp )(
IPropertySetter * This,
/* [in] */ DEXTER_PARAM Param,
/* [in] */ __RPC__in DEXTER_VALUE *paValue);
HRESULT ( STDMETHODCALLTYPE *GetProps )(
IPropertySetter * This,
/* [out] */ __RPC__out LONG *pcParams,
/* [out] */ __RPC__deref_out_opt DEXTER_PARAM **paParam,
/* [out] */ __RPC__deref_out_opt DEXTER_VALUE **paValue);
HRESULT ( STDMETHODCALLTYPE *FreeProps )(
IPropertySetter * This,
/* [in] */ LONG cParams,
/* [in] */ __RPC__in DEXTER_PARAM *paParam,
/* [in] */ __RPC__in DEXTER_VALUE *paValue);
HRESULT ( STDMETHODCALLTYPE *ClearProps )(
IPropertySetter * This);
HRESULT ( STDMETHODCALLTYPE *SaveToBlob )(
IPropertySetter * This,
/* [out] */ __RPC__out LONG *pcSize,
/* [out] */ __RPC__deref_out_opt BYTE **ppb);
HRESULT ( STDMETHODCALLTYPE *LoadFromBlob )(
IPropertySetter * This,
/* [in] */ LONG cSize,
/* [in] */ __RPC__in BYTE *pb);
HRESULT ( STDMETHODCALLTYPE *SetProps )(
IPropertySetter * This,
/* [in] */ __RPC__in_opt IUnknown *pTarget,
/* [in] */ REFERENCE_TIME rtNow);
HRESULT ( STDMETHODCALLTYPE *PrintXMLW )(
IPropertySetter * This,
/* [out] */ __RPC__out WCHAR *pszXML,
/* [in] */ int cchXML,
/* [out] */ __RPC__out int *pcchPrinted,
/* [in] */ int indent);
END_INTERFACE
} IPropertySetterVtbl;
interface IPropertySetter
{
CONST_VTBL struct IPropertySetterVtbl *lpVtbl;
};
#ifdef COBJMACROS
#define IPropertySetter_QueryInterface(This,riid,ppvObject) \
( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) )
#define IPropertySetter_AddRef(This) \
( (This)->lpVtbl -> AddRef(This) )
#define IPropertySetter_Release(This) \
( (This)->lpVtbl -> Release(This) )
#define IPropertySetter_LoadXML(This,pxml) \
( (This)->lpVtbl -> LoadXML(This,pxml) )
#define IPropertySetter_PrintXML(This,pszXML,cbXML,pcbPrinted,indent) \
( (This)->lpVtbl -> PrintXML(This,pszXML,cbXML,pcbPrinted,indent) )
#define IPropertySetter_CloneProps(This,ppSetter,rtStart,rtStop) \
( (This)->lpVtbl -> CloneProps(This,ppSetter,rtStart,rtStop) )
#define IPropertySetter_AddProp(This,Param,paValue) \
( (This)->lpVtbl -> AddProp(This,Param,paValue) )
#define IPropertySetter_GetProps(This,pcParams,paParam,paValue) \
( (This)->lpVtbl -> GetProps(This,pcParams,paParam,paValue) )
#define IPropertySetter_FreeProps(This,cParams,paParam,paValue) \
( (This)->lpVtbl -> FreeProps(This,cParams,paParam,paValue) )
#define IPropertySetter_ClearProps(This) \
( (This)->lpVtbl -> ClearProps(This) )
#define IPropertySetter_SaveToBlob(This,pcSize,ppb) \
( (This)->lpVtbl -> SaveToBlob(This,pcSize,ppb) )
#define IPropertySetter_LoadFromBlob(This,cSize,pb) \
( (This)->lpVtbl -> LoadFromBlob(This,cSize,pb) )
#define IPropertySetter_SetProps(This,pTarget,rtNow) \
( (This)->lpVtbl -> SetProps(This,pTarget,rtNow) )
#define IPropertySetter_PrintXMLW(This,pszXML,cchXML,pcchPrinted,indent) \
( (This)->lpVtbl -> PrintXMLW(This,pszXML,cchXML,pcchPrinted,indent) )
#endif /* COBJMACROS */
#endif /* C style interface */
#endif /* __IPropertySetter_INTERFACE_DEFINED__ */
#ifndef __IDxtCompositor_INTERFACE_DEFINED__
#define __IDxtCompositor_INTERFACE_DEFINED__
/* interface IDxtCompositor */
/* [unique][helpstring][dual][uuid][object] */
EXTERN_C const IID IID_IDxtCompositor;
#if defined(__cplusplus) && !defined(CINTERFACE)
MIDL_INTERFACE("BB44391E-6ABD-422f-9E2E-385C9DFF51FC")
IDxtCompositor : public IDXEffect
{
public:
virtual /* [helpstring][id][propget] */ HRESULT STDMETHODCALLTYPE get_OffsetX(
/* [retval][out] */ __RPC__out long *pVal) = 0;
virtual /* [helpstring][id][propput] */ HRESULT STDMETHODCALLTYPE put_OffsetX(
/* [in] */ long newVal) = 0;
virtual /* [helpstring][id][propget] */ HRESULT STDMETHODCALLTYPE get_OffsetY(
/* [retval][out] */ __RPC__out long *pVal) = 0;
virtual /* [helpstring][id][propput] */ HRESULT STDMETHODCALLTYPE put_OffsetY(
/* [in] */ long newVal) = 0;
virtual /* [helpstring][id][propget] */ HRESULT STDMETHODCALLTYPE get_Width(
/* [retval][out] */ __RPC__out long *pVal) = 0;
virtual /* [helpstring][id][propput] */ HRESULT STDMETHODCALLTYPE put_Width(
/* [in] */ long newVal) = 0;
virtual /* [helpstring][id][propget] */ HRESULT STDMETHODCALLTYPE get_Height(
/* [retval][out] */ __RPC__out long *pVal) = 0;
virtual /* [helpstring][id][propput] */ HRESULT STDMETHODCALLTYPE put_Height(
/* [in] */ long newVal) = 0;
virtual /* [helpstring][id][propget] */ HRESULT STDMETHODCALLTYPE get_SrcOffsetX(
/* [retval][out] */ __RPC__out long *pVal) = 0;
virtual /* [helpstring][id][propput] */ HRESULT STDMETHODCALLTYPE put_SrcOffsetX(
/* [in] */ long newVal) = 0;
virtual /* [helpstring][id][propget] */ HRESULT STDMETHODCALLTYPE get_SrcOffsetY(
/* [retval][out] */ __RPC__out long *pVal) = 0;
virtual /* [helpstring][id][propput] */ HRESULT STDMETHODCALLTYPE put_SrcOffsetY(
/* [in] */ long newVal) = 0;
virtual /* [helpstring][id][propget] */ HRESULT STDMETHODCALLTYPE get_SrcWidth(
/* [retval][out] */ __RPC__out long *pVal) = 0;
virtual /* [helpstring][id][propput] */ HRESULT STDMETHODCALLTYPE put_SrcWidth(
/* [in] */ long newVal) = 0;
virtual /* [helpstring][id][propget] */ HRESULT STDMETHODCALLTYPE get_SrcHeight(
/* [retval][out] */ __RPC__out long *pVal) = 0;
virtual /* [helpstring][id][propput] */ HRESULT STDMETHODCALLTYPE put_SrcHeight(
/* [in] */ long newVal) = 0;
};
#else /* C style interface */
typedef struct IDxtCompositorVtbl
{
BEGIN_INTERFACE
HRESULT ( STDMETHODCALLTYPE *QueryInterface )(
IDxtCompositor * This,
/* [in] */ __RPC__in REFIID riid,
/* [iid_is][out] */
__RPC__deref_out void **ppvObject);
ULONG ( STDMETHODCALLTYPE *AddRef )(
IDxtCompositor * This);
ULONG ( STDMETHODCALLTYPE *Release )(
IDxtCompositor * This);
HRESULT ( STDMETHODCALLTYPE *GetTypeInfoCount )(
IDxtCompositor * This,
/* [out] */ __RPC__out UINT *pctinfo);
HRESULT ( STDMETHODCALLTYPE *GetTypeInfo )(
IDxtCompositor * This,
/* [in] */ UINT iTInfo,
/* [in] */ LCID lcid,
/* [out] */ __RPC__deref_out_opt ITypeInfo **ppTInfo);
HRESULT ( STDMETHODCALLTYPE *GetIDsOfNames )(
IDxtCompositor * This,
/* [in] */ __RPC__in REFIID riid,
/* [size_is][in] */ __RPC__in_ecount_full(cNames) LPOLESTR *rgszNames,
/* [range][in] */ UINT cNames,
/* [in] */ LCID lcid,
/* [size_is][out] */ __RPC__out_ecount_full(cNames) DISPID *rgDispId);
/* [local] */ HRESULT ( STDMETHODCALLTYPE *Invoke )(
IDxtCompositor * This,
/* [in] */ DISPID dispIdMember,
/* [in] */ REFIID riid,
/* [in] */ LCID lcid,
/* [in] */ WORD wFlags,
/* [out][in] */ DISPPARAMS *pDispParams,
/* [out] */ VARIANT *pVarResult,
/* [out] */ EXCEPINFO *pExcepInfo,
/* [out] */ UINT *puArgErr);
/* [id][propget] */ HRESULT ( STDMETHODCALLTYPE *get_Capabilities )(
IDxtCompositor * This,
/* [retval][out] */ __RPC__out long *pVal);
/* [id][propget] */ HRESULT ( STDMETHODCALLTYPE *get_Progress )(
IDxtCompositor * This,
/* [retval][out] */ __RPC__out float *pVal);
/* [id][propput] */ HRESULT ( STDMETHODCALLTYPE *put_Progress )(
IDxtCompositor * This,
/* [in] */ float newVal);
/* [id][propget] */ HRESULT ( STDMETHODCALLTYPE *get_StepResolution )(
IDxtCompositor * This,
/* [retval][out] */ __RPC__out float *pVal);
/* [id][propget] */ HRESULT ( STDMETHODCALLTYPE *get_Duration )(
IDxtCompositor * This,
/* [retval][out] */ __RPC__out float *pVal);
/* [id][propput] */ HRESULT ( STDMETHODCALLTYPE *put_Duration )(
IDxtCompositor * This,
/* [in] */ float newVal);
/* [helpstring][id][propget] */ HRESULT ( STDMETHODCALLTYPE *get_OffsetX )(
IDxtCompositor * This,
/* [retval][out] */ __RPC__out long *pVal);
/* [helpstring][id][propput] */ HRESULT ( STDMETHODCALLTYPE *put_OffsetX )(
IDxtCompositor * This,
/* [in] */ long newVal);
/* [helpstring][id][propget] */ HRESULT ( STDMETHODCALLTYPE *get_OffsetY )(
IDxtCompositor * This,
/* [retval][out] */ __RPC__out long *pVal);
/* [helpstring][id][propput] */ HRESULT ( STDMETHODCALLTYPE *put_OffsetY )(
IDxtCompositor * This,
/* [in] */ long newVal);
/* [helpstring][id][propget] */ HRESULT ( STDMETHODCALLTYPE *get_Width )(
IDxtCompositor * This,
/* [retval][out] */ __RPC__out long *pVal);
/* [helpstring][id][propput] */ HRESULT ( STDMETHODCALLTYPE *put_Width )(
IDxtCompositor * This,
/* [in] */ long newVal);
/* [helpstring][id][propget] */ HRESULT ( STDMETHODCALLTYPE *get_Height )(
IDxtCompositor * This,
/* [retval][out] */ __RPC__out long *pVal);
/* [helpstring][id][propput] */ HRESULT ( STDMETHODCALLTYPE *put_Height )(
IDxtCompositor * This,
/* [in] */ long newVal);
/* [helpstring][id][propget] */ HRESULT ( STDMETHODCALLTYPE *get_SrcOffsetX )(
IDxtCompositor * This,
/* [retval][out] */ __RPC__out long *pVal);
/* [helpstring][id][propput] */ HRESULT ( STDMETHODCALLTYPE *put_SrcOffsetX )(
IDxtCompositor * This,
/* [in] */ long newVal);