-
Notifications
You must be signed in to change notification settings - Fork 1
/
vitaminctrl1.h
2351 lines (2336 loc) · 60.7 KB
/
vitaminctrl1.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
#pragma once
// Machine generated IDispatch wrapper class(es) created by Microsoft Visual C++
// NOTE: Do not modify the contents of this file. If this class is regenerated by
// Microsoft Visual C++, your modifications will be overwritten.
/////////////////////////////////////////////////////////////////////////////
// CVitaminctrl1 wrapper class
class CVitaminctrl1 : public CWnd
{
protected:
DECLARE_DYNCREATE(CVitaminctrl1)
public:
CLSID const& GetClsid()
{
static CLSID const clsid
= { 0x70EDCF63, 0xCA7E, 0x4812, { 0x85, 0x28, 0xDA, 0x1E, 0xA2, 0xFD, 0x53, 0xB6 } };
return clsid;
}
virtual BOOL Create(LPCTSTR lpszClassName, LPCTSTR lpszWindowName, DWORD dwStyle,
const RECT& rect, CWnd* pParentWnd, UINT nID,
CCreateContext* pContext = NULL)
{
return CreateControl(GetClsid(), lpszWindowName, dwStyle, rect, pParentWnd, nID);
}
BOOL Create(LPCTSTR lpszWindowName, DWORD dwStyle, const RECT& rect, CWnd* pParentWnd,
UINT nID, CFile* pPersist = NULL, BOOL bStorage = FALSE,
BSTR bstrLicKey = NULL)
{
return CreateControl(GetClsid(), lpszWindowName, dwStyle, rect, pParentWnd, nID,
pPersist, bStorage, bstrLicKey);
}
// Attributes
public:
enum
{
eAVINone = 0,
eAVIStop = 1,
eAVIRecord = 2
}EAVIRecordState;
enum
{
esrv2KServer = 0,
esrv3KServer = 1,
esrv456KServer = 2,
esrv7KServer = 3,
esrv2KServer4Ch = 4,
esrv7KDualStream = 5
}EServerModelType;
enum
{
eVideoSignalOff = 0,
eVideoSignalOn = 1
}EVideoSignalState;
enum
{
eConnVideo = 1,
eConnAudio = 2
}EConnectionType;
enum
{
eTalking = 1,
eNonTalking = 2
}ETalkStatus;
enum
{
eViCodecMJpeg = 1,
eViCodecSP = 2,
eViCodecSHM = 3,
eViCodecH264 = 4
}EVideoCodecType;
enum
{
eProtNone = 0,
eProtUDP = 1,
eProtTCP = 2,
eProtHTTP = 3,
eProtMulticast = 4
}EConnProtocol;
enum
{
eRtspStateNone = 0,
eRtspStatePlayBefore = 1,
eRtspStatePlay = 2,
eRtspStatePause = 3
}ERtspState;
enum
{
clickNone = 0,
clickHandleSelf = 1,
clickSendEvent = 2,
clickHandleSendEvent = 3
}EClickEventHandler;
enum
{
eTimeFmtNormal = 0,
eTimeFmtTwelves = 1,
eTimeFmtUser = 2
}EDisplayTimeFormat;
enum
{
eCtrlNoCtrlBar = 0,
eCtrlNormal = 1,
eCtrlMotion = 2,
eCtrlMaskEdit = 4,
eCtrlMaskEdit3D = 5
}EControlType;
enum
{
eBtnAuto = 0,
eBtnPauseStop = 1,
eBtnStopOnly = 2
}EPanelBtnStyle;
enum
{
eStream1 = 0,
eStream2 = 1,
eStream3 = 2,
eStream4 = 3,
eStreamLast = 3
}EDualStreamOption;
enum
{
eHttpProxyNone = 0,
eHttpProxySet = 1,
eHttpProxyIE = 2
}EHttpProxyType;
enum
{
eMediaNone = 0,
eMediaVideo = 1,
eMediaAudio = 2,
eMediaAV = 3
}EMediaType;
enum
{
eTalkBtnToggle = 1,
eTalkBtnPush = 2
}ETalkBtnStyle;
enum
{
evsz2KHalf = 1,
evsz2KNormal = 2,
evsz2KDouble = 3
}EVideoSize2K;
enum
{
evqua2KMedium = 1,
evqua2KStandard = 2,
evqua2KGood = 3,
evqua2KDetailed = 4,
evqua2KExcellent = 5
}EVideoQuality2K;
enum
{
ePicFmtJpeg = 1,
ePicFmtBmp = 2,
ePicFmtYUY2 = 3,
ePicFmtRaw24 = 4,
ePicFmtIYUV = 5,
ePicFmtYV12 = 6
}EPictureFormat;
enum
{
eAuCodecLow = 1,
eAuCodecMobile = 2,
eAuCodecStandard = 3,
eAuCodecStereo = 4
}EAudioCodecType;
enum
{
eStOpStreaming = 1,
eStOpSingleJpeg = 2
}EStreamingOption;
enum
{
eRegLocalMachine = 0,
eRegCurrentUser = 1
}ERegistryRoot;
enum
{
ctrlStopped = 0,
ctrlConnecting = 1,
ctrlRunning = 2,
ctrlDisconnecting = 3,
ctrlReConnecting = 4,
ctrlConnectionBroken = 5
}EControlStatus;
enum
{
ePanSpeed = 1,
eTiltSpeed = 2,
eZoomSpeed = 3,
eFocusSpeed = 4,
eAutoPanPatrolSpeed = 5
}ESpeedType;
enum
{
eMDAlertWin1 = 1,
eMDAlertWin2 = 2,
eMDAlertWin3 = 4,
eDILow1 = 256,
eDILow2 = 512,
eDILow3 = 1024,
eDILow4 = 2048,
eDIHigh1 = 65536,
eDIHigh2 = 131072,
eDIHigh3 = 262144,
eDIHigh4 = 524288,
eDIRise1 = 2097152,
eDIRise2 = 4194304,
eDIRise3 = 8388608,
eDIRise4 = 16777216,
eDIFall1 = 33554432,
eDIFall2 = 67108864,
eDIFall3 = 134217728,
eDIFall4 = 268435456
}EDBRecordEventType;
enum
{
eStatusDiskFull = 1,
eStatusDBRepairFinish = 2,
eStatusLocRepairFinish = 3,
eStatusNeedRepair = 4,
eStatusRecordStart = 5,
eStatusRecordStop = 6,
eStatusSizeLimited = 7
}EDBStatusCode;
enum
{
eptzPTZOnOff = 1,
eptzPTZBuiltIn = 2,
eptzPTZPan = 4,
eptzPTZTilt = 8,
eptzPTZZoom = 16,
eptzPTZFocus = 32
}EPTZEnableFlag;
enum
{
eCfgSystemResetSystem = 0,
eCfgSystemSerialNumber = 2,
eCfgSystemCurrentDate = 3,
eCfgSystemCurrentTime = 4,
eCfgSystemFirmwareVersion = 6,
eCfgSystemPTZEnable1 = 8,
eCfgSystemUserName = 14,
eCfgSystemUserPwssword = 15,
eCfgVideoCaptionText = 101
}EServerConfig;
enum
{
ebutDigitalZoom = 1,
ebutAVIConvert = 2,
ebutTalk = 4,
ebutRtspPlayStop = 8,
ebutPlayVolume = 16,
ebutMicVolume = 32,
ebutRtspSlider = 64,
ebutMP4Convert = 128
}EControlButtonState;
enum
{
eFontStyleRegular = 0,
eFontStyleBold = 1,
eFontStyleItalic = 2,
eFontStyleBoldItalic = 3,
eFontStyleUnderline = 4,
eFontStyleStrikeout = 8
}EFontStyle;
// Operations
public:
// IVitaminCtrl
// Functions
//
CString get_Url()
{
CString result;
InvokeHelper(0x1, DISPATCH_PROPERTYGET, VT_BSTR, (void*)&result, NULL);
return result;
}
void put_Url(LPCTSTR newValue)
{
static BYTE parms[] = VTS_BSTR ;
InvokeHelper(0x1, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
CString get_RemoteIPAddr()
{
CString result;
InvokeHelper(0x3, DISPATCH_PROPERTYGET, VT_BSTR, (void*)&result, NULL);
return result;
}
void put_RemoteIPAddr(LPCTSTR newValue)
{
static BYTE parms[] = VTS_BSTR ;
InvokeHelper(0x3, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
long get_CurrentControlCam()
{
long result;
InvokeHelper(0xc9, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, NULL);
return result;
}
void put_CurrentControlCam(long newValue)
{
static BYTE parms[] = VTS_I4 ;
InvokeHelper(0xc9, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
long get_StreamingBufferTime()
{
long result;
InvokeHelper(0x34b, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, NULL);
return result;
}
void put_StreamingBufferTime(long newValue)
{
static BYTE parms[] = VTS_I4 ;
InvokeHelper(0x34b, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
BOOL get_AntiTearing()
{
BOOL result;
InvokeHelper(0x34e, DISPATCH_PROPERTYGET, VT_BOOL, (void*)&result, NULL);
return result;
}
void put_AntiTearing(BOOL newValue)
{
static BYTE parms[] = VTS_BOOL ;
InvokeHelper(0x34e, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
CString get_Url2()
{
CString result;
InvokeHelper(0x34f, DISPATCH_PROPERTYGET, VT_BSTR, (void*)&result, NULL);
return result;
}
void put_Url2(LPCTSTR newValue)
{
static BYTE parms[] = VTS_BSTR ;
InvokeHelper(0x34f, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
void put_IgnoreSSLCertificate(BOOL newValue)
{
static BYTE parms[] = VTS_BOOL ;
InvokeHelper(0x331, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
BOOL get_IgnoreSSLCertificate()
{
BOOL result;
InvokeHelper(0x331, DISPATCH_PROPERTYGET, VT_BOOL, (void*)&result, NULL);
return result;
}
void put_EnableSSL(BOOL newValue)
{
static BYTE parms[] = VTS_BOOL ;
InvokeHelper(0x332, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
BOOL get_EnableSSL()
{
BOOL result;
InvokeHelper(0x332, DISPATCH_PROPERTYGET, VT_BOOL, (void*)&result, NULL);
return result;
}
CString get_GetMaskEditParmUrl()
{
CString result;
InvokeHelper(0x100, DISPATCH_PROPERTYGET, VT_BSTR, (void*)&result, NULL);
return result;
}
void put_GetMaskEditParmUrl(LPCTSTR newValue)
{
static BYTE parms[] = VTS_BSTR ;
InvokeHelper(0x100, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
CString get_SetMaskEditParmUrl()
{
CString result;
InvokeHelper(0x101, DISPATCH_PROPERTYGET, VT_BSTR, (void*)&result, NULL);
return result;
}
void put_SetMaskEditParmUrl(LPCTSTR newValue)
{
static BYTE parms[] = VTS_BSTR ;
InvokeHelper(0x101, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
CString get_DarwinExtraPath()
{
CString result;
InvokeHelper(0x342, DISPATCH_PROPERTYGET, VT_BSTR, (void*)&result, NULL);
return result;
}
void put_DarwinExtraPath(LPCTSTR newValue)
{
static BYTE parms[] = VTS_BSTR ;
InvokeHelper(0x342, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
BOOL get_FlipMaskWnd()
{
BOOL result;
InvokeHelper(0x33e, DISPATCH_PROPERTYGET, VT_BOOL, (void*)&result, NULL);
return result;
}
void put_FlipMaskWnd(BOOL newValue)
{
static BYTE parms[] = VTS_BOOL ;
InvokeHelper(0x33e, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
BOOL get_MirrorMaskaWnd()
{
BOOL result;
InvokeHelper(0x33f, DISPATCH_PROPERTYGET, VT_BOOL, (void*)&result, NULL);
return result;
}
void put_MirrorMaskaWnd(BOOL newValue)
{
static BYTE parms[] = VTS_BOOL ;
InvokeHelper(0x33f, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
BOOL get_EnableMD()
{
BOOL result;
InvokeHelper(0xf, DISPATCH_PROPERTYGET, VT_BOOL, (void*)&result, NULL);
return result;
}
void put_EnableMD(BOOL newValue)
{
static BYTE parms[] = VTS_BOOL ;
InvokeHelper(0xf, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
void put_GetMD(LPCTSTR newValue)
{
static BYTE parms[] = VTS_BSTR ;
InvokeHelper(0x10, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
CString get_GetMD()
{
CString result;
InvokeHelper(0x10, DISPATCH_PROPERTYGET, VT_BSTR, (void*)&result, NULL);
return result;
}
CString get_SetMD()
{
CString result;
InvokeHelper(0x1e, DISPATCH_PROPERTYGET, VT_BSTR, (void*)&result, NULL);
return result;
}
void put_SetMD(LPCTSTR newValue)
{
static BYTE parms[] = VTS_BSTR ;
InvokeHelper(0x1e, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
CString get_GetMDParmUrl()
{
CString result;
InvokeHelper(0x11, DISPATCH_PROPERTYGET, VT_BSTR, (void*)&result, NULL);
return result;
}
void put_GetMDParmUrl(LPCTSTR newValue)
{
static BYTE parms[] = VTS_BSTR ;
InvokeHelper(0x11, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
CString get_SetMDParmUrl()
{
CString result;
InvokeHelper(0x1f, DISPATCH_PROPERTYGET, VT_BSTR, (void*)&result, NULL);
return result;
}
void put_SetMDParmUrl(LPCTSTR newValue)
{
static BYTE parms[] = VTS_BSTR ;
InvokeHelper(0x1f, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
BOOL get_MDEditMode()
{
BOOL result;
InvokeHelper(0x15, DISPATCH_PROPERTYGET, VT_BOOL, (void*)&result, NULL);
return result;
}
void put_MDEditMode(BOOL newValue)
{
static BYTE parms[] = VTS_BOOL ;
InvokeHelper(0x15, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
long get_PlayVolume()
{
long result;
InvokeHelper(0xdf, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, NULL);
return result;
}
void put_PlayVolume(long newValue)
{
static BYTE parms[] = VTS_I4 ;
InvokeHelper(0xdf, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
BOOL get_PlayMute()
{
BOOL result;
InvokeHelper(0xe0, DISPATCH_PROPERTYGET, VT_BOOL, (void*)&result, NULL);
return result;
}
void put_PlayMute(BOOL newValue)
{
static BYTE parms[] = VTS_BOOL ;
InvokeHelper(0xe0, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
long OpenVolumeEditWnd()
{
long result;
InvokeHelper(0x147, DISPATCH_METHOD, VT_I4, (void*)&result, NULL);
return result;
}
long get_ClickEventHandler()
{
long result;
InvokeHelper(0x1d, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, NULL);
return result;
}
void put_ClickEventHandler(long newValue)
{
static BYTE parms[] = VTS_I4 ;
InvokeHelper(0x1d, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
BOOL get_WheelEventHandler()
{
BOOL result;
InvokeHelper(0xe5, DISPATCH_PROPERTYGET, VT_BOOL, (void*)&result, NULL);
return result;
}
void put_WheelEventHandler(BOOL newValue)
{
static BYTE parms[] = VTS_BOOL ;
InvokeHelper(0xe5, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
BOOL get_BeRightClickEventHandler()
{
BOOL result;
InvokeHelper(0x118, DISPATCH_PROPERTYGET, VT_BOOL, (void*)&result, NULL);
return result;
}
void put_BeRightClickEventHandler(BOOL newValue)
{
static BYTE parms[] = VTS_BOOL ;
InvokeHelper(0x118, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
BOOL get_EnableJoystick()
{
BOOL result;
InvokeHelper(0x333, DISPATCH_PROPERTYGET, VT_BOOL, (void*)&result, NULL);
return result;
}
void put_EnableJoystick(BOOL newValue)
{
static BYTE parms[] = VTS_BOOL ;
InvokeHelper(0x333, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
long get_UpdateJoystickInterval()
{
long result;
InvokeHelper(0x334, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, NULL);
return result;
}
void put_UpdateJoystickInterval(long newValue)
{
static BYTE parms[] = VTS_I4 ;
InvokeHelper(0x334, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
long get_JoystickSpeedLvs()
{
long result;
InvokeHelper(0x335, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, NULL);
return result;
}
void put_JoystickSpeedLvs(long newValue)
{
static BYTE parms[] = VTS_I4 ;
InvokeHelper(0x335, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
BOOL get_DigitalZoomEnableChk()
{
BOOL result;
InvokeHelper(0x5f, DISPATCH_PROPERTYGET, VT_BOOL, (void*)&result, NULL);
return result;
}
void put_DigitalZoomEnableChk(BOOL newValue)
{
static BYTE parms[] = VTS_BOOL ;
InvokeHelper(0x5f, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
long OpenDigitalZoomEditWnd()
{
long result;
InvokeHelper(0x146, DISPATCH_METHOD, VT_I4, (void*)&result, NULL);
return result;
}
long get_DigitalZoomFactor()
{
long result;
InvokeHelper(0x60, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, NULL);
return result;
}
void put_DigitalZoomFactor(long newValue)
{
static BYTE parms[] = VTS_I4 ;
InvokeHelper(0x60, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
long get_DigitalZoomX()
{
long result;
InvokeHelper(0x61, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, NULL);
return result;
}
void put_DigitalZoomX(long newValue)
{
static BYTE parms[] = VTS_I4 ;
InvokeHelper(0x61, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
long get_DigitalZoomY()
{
long result;
InvokeHelper(0x62, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, NULL);
return result;
}
void put_DigitalZoomY(long newValue)
{
static BYTE parms[] = VTS_I4 ;
InvokeHelper(0x62, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
BOOL get_DigitalZoomEnabled()
{
BOOL result;
InvokeHelper(0x63, DISPATCH_PROPERTYGET, VT_BOOL, (void*)&result, NULL);
return result;
}
void put_DigitalZoomEnabled(BOOL newValue)
{
static BYTE parms[] = VTS_BOOL ;
InvokeHelper(0x63, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
long get_MaxDigitalZoomFactor()
{
long result;
InvokeHelper(0x350, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, NULL);
return result;
}
void put_MaxDigitalZoomFactor(long newValue)
{
static BYTE parms[] = VTS_I4 ;
InvokeHelper(0x350, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
long get_ControlPort()
{
long result;
InvokeHelper(0x5, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, NULL);
return result;
}
void put_ControlPort(long newValue)
{
static BYTE parms[] = VTS_I4 ;
InvokeHelper(0x5, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
CString get_Language()
{
CString result;
InvokeHelper(0x14, DISPATCH_PROPERTYGET, VT_BSTR, (void*)&result, NULL);
return result;
}
void put_Language(LPCTSTR newValue)
{
static BYTE parms[] = VTS_BSTR ;
InvokeHelper(0x14, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
BOOL get_Stretch()
{
BOOL result;
InvokeHelper(0x20, DISPATCH_PROPERTYGET, VT_BOOL, (void*)&result, NULL);
return result;
}
void put_Stretch(BOOL newValue)
{
static BYTE parms[] = VTS_BOOL ;
InvokeHelper(0x20, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
BOOL get_Deblocking()
{
BOOL result;
InvokeHelper(0x28, DISPATCH_PROPERTYGET, VT_BOOL, (void*)&result, NULL);
return result;
}
void put_Deblocking(BOOL newValue)
{
static BYTE parms[] = VTS_BOOL ;
InvokeHelper(0x28, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
BOOL get_UserDateFormat()
{
BOOL result;
InvokeHelper(0x5b, DISPATCH_PROPERTYGET, VT_BOOL, (void*)&result, NULL);
return result;
}
void put_UserDateFormat(BOOL newValue)
{
static BYTE parms[] = VTS_BOOL ;
InvokeHelper(0x5b, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
long get_DisplayTimeFormat()
{
long result;
InvokeHelper(0x5c, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, NULL);
return result;
}
void put_DisplayTimeFormat(long newValue)
{
static BYTE parms[] = VTS_I4 ;
InvokeHelper(0x5c, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
long get_ControlType()
{
long result;
InvokeHelper(0xca, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, NULL);
return result;
}
void put_ControlType(long newValue)
{
static BYTE parms[] = VTS_I4 ;
InvokeHelper(0xca, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
BOOL get_Deinterlace()
{
BOOL result;
InvokeHelper(0x336, DISPATCH_PROPERTYGET, VT_BOOL, (void*)&result, NULL);
return result;
}
void put_Deinterlace(BOOL newValue)
{
static BYTE parms[] = VTS_BOOL ;
InvokeHelper(0x336, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
BOOL get_AutoStartConnection()
{
BOOL result;
InvokeHelper(0x33c, DISPATCH_PROPERTYGET, VT_BOOL, (void*)&result, NULL);
return result;
}
void put_AutoStartConnection(BOOL newValue)
{
static BYTE parms[] = VTS_BOOL ;
InvokeHelper(0x33c, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
CString get_AVIPath()
{
CString result;
InvokeHelper(0xe7, DISPATCH_PROPERTYGET, VT_BSTR, (void*)&result, NULL);
return result;
}
void put_AVIPath(LPCTSTR newValue)
{
static BYTE parms[] = VTS_BSTR ;
InvokeHelper(0xe7, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
long get_AVIStatus()
{
long result;
InvokeHelper(0xee, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, NULL);
return result;
}
BOOL get_AutoAVISettings()
{
BOOL result;
InvokeHelper(0xef, DISPATCH_PROPERTYGET, VT_BOOL, (void*)&result, NULL);
return result;
}
void put_AutoAVISettings(BOOL newValue)
{
static BYTE parms[] = VTS_BOOL ;
InvokeHelper(0xef, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
long get_AVIVideoFrameRate()
{
long result;
InvokeHelper(0xf0, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, NULL);
return result;
}
void put_AVIVideoFrameRate(long newValue)
{
static BYTE parms[] = VTS_I4 ;
InvokeHelper(0xf0, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
BOOL get_AVIVideoSizeByStream()
{
BOOL result;
InvokeHelper(0xf1, DISPATCH_PROPERTYGET, VT_BOOL, (void*)&result, NULL);
return result;
}
void put_AVIVideoSizeByStream(BOOL newValue)
{
static BYTE parms[] = VTS_BOOL ;
InvokeHelper(0xf1, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
long get_AVIVideoWidth()
{
long result;
InvokeHelper(0xf2, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, NULL);
return result;
}
void put_AVIVideoWidth(long newValue)
{
static BYTE parms[] = VTS_I4 ;
InvokeHelper(0xf2, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
long get_AVIVideoHeight()
{
long result;
InvokeHelper(0xf3, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, NULL);
return result;
}
void put_AVIVideoHeight(long newValue)
{
static BYTE parms[] = VTS_I4 ;
InvokeHelper(0xf3, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
CString get_AVIFilePathName()
{
CString result;
InvokeHelper(0x10c, DISPATCH_PROPERTYGET, VT_BSTR, (void*)&result, NULL);
return result;
}
void put_AVIFilePathName(LPCTSTR newValue)
{
static BYTE parms[] = VTS_BSTR ;
InvokeHelper(0x10c, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
BOOL get_AVIManualNaming()
{
BOOL result;
InvokeHelper(0x10d, DISPATCH_PROPERTYGET, VT_BOOL, (void*)&result, NULL);
return result;
}
void put_AVIManualNaming(BOOL newValue)
{
static BYTE parms[] = VTS_BOOL ;
InvokeHelper(0x10d, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
long get_AVIMaxFileSize()
{
long result;
InvokeHelper(0x10e, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, NULL);
return result;
}
void put_AVIMaxFileSize(long newValue)
{
static BYTE parms[] = VTS_I4 ;
InvokeHelper(0x10e, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
long get_AVIMaxFileTimeLength()
{
long result;
InvokeHelper(0x10f, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, NULL);
return result;
}
void put_AVIMaxFileTimeLength(long newValue)
{
static BYTE parms[] = VTS_I4 ;
InvokeHelper(0x10f, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
long get_AVIRecordTimeout()
{
long result;
InvokeHelper(0x116, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, NULL);
return result;
}
void put_AVIRecordTimeout(long newValue)
{
static BYTE parms[] = VTS_I4 ;
InvokeHelper(0x116, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
long StartAVIConversion()
{
long result;
InvokeHelper(0x133, DISPATCH_METHOD, VT_I4, (void*)&result, NULL);
return result;
}
long StopAVIConversion()
{
long result;
InvokeHelper(0x134, DISPATCH_METHOD, VT_I4, (void*)&result, NULL);
return result;
}
long ChooseAVIVideoCompressor(LPCTSTR bstrDialogTitle)
{
long result;
static BYTE parms[] = VTS_BSTR ;
InvokeHelper(0x135, DISPATCH_METHOD, VT_I4, (void*)&result, parms, bstrDialogTitle);
return result;
}
long ChooseAVIAudioCompressor(LPCTSTR bstrDialogTitle)
{
long result;
static BYTE parms[] = VTS_BSTR ;
InvokeHelper(0x136, DISPATCH_METHOD, VT_I4, (void*)&result, parms, bstrDialogTitle);
return result;
}
BOOL get_MP4Conversion()
{
BOOL result;
InvokeHelper(0x103, DISPATCH_PROPERTYGET, VT_BOOL, (void*)&result, NULL);
return result;
}
void put_MP4Conversion(BOOL newValue)
{
static BYTE parms[] = VTS_BOOL ;
InvokeHelper(0x103, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
CString get_MP4Path()
{
CString result;
InvokeHelper(0x104, DISPATCH_PROPERTYGET, VT_BSTR, (void*)&result, NULL);
return result;
}
void put_MP4Path(LPCTSTR newValue)
{
static BYTE parms[] = VTS_BSTR ;
InvokeHelper(0x104, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
CString get_MP4Prefix()
{
CString result;
InvokeHelper(0x10b, DISPATCH_PROPERTYGET, VT_BSTR, (void*)&result, NULL);
return result;
}
void put_MP4Prefix(LPCTSTR newValue)
{
static BYTE parms[] = VTS_BSTR ;
InvokeHelper(0x10b, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
long get_MP4Status()
{
long result;
InvokeHelper(0x105, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, NULL);
return result;
}
long StartMP4Conversion()
{
long result;
InvokeHelper(0x13c, DISPATCH_METHOD, VT_I4, (void*)&result, NULL);
return result;
}
long StopMP4Conversion()
{
long result;
InvokeHelper(0x13d, DISPATCH_METHOD, VT_I4, (void*)&result, NULL);
return result;
}
CString get_ControlVersion()
{
CString result;
InvokeHelper(0x34d, DISPATCH_PROPERTYGET, VT_BSTR, (void*)&result, NULL);
return result;
}
BOOL get_StretchFullScreen()
{
BOOL result;
InvokeHelper(0x349, DISPATCH_PROPERTYGET, VT_BOOL, (void*)&result, NULL);
return result;
}
void put_StretchFullScreen(BOOL newValue)
{
static BYTE parms[] = VTS_BOOL ;
InvokeHelper(0x349, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
long get_PanelButtonStyle()
{
long result;
InvokeHelper(0xe8, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, NULL);
return result;
}
void put_PanelButtonStyle(long newValue)
{
static BYTE parms[] = VTS_I4 ;
InvokeHelper(0xe8, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
BOOL get_NamePassOption()
{
BOOL result;
InvokeHelper(0x110, DISPATCH_PROPERTYGET, VT_BOOL, (void*)&result, NULL);
return result;
}
void put_NamePassOption(BOOL newValue)
{
static BYTE parms[] = VTS_BOOL ;
InvokeHelper(0x110, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}