summaryrefslogtreecommitdiff
path: root/src/asicam/ASICamera2.rs
blob: 7d029db6db33509f7ebe6d4fa36bce5544938068 (plain)
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
/* automatically generated by rust-bindgen */
use std::os;

pub struct CameraHandle(i32);

pub const CAMERA_ID_MAX: u32 = 128;
#[repr(u32)]
#[derive(Copy, Clone, Debug)]
pub enum BayerPattern {
    RG = 0,
    BG = 1,
    GR = 2,
    GB = 3
}

#[repr(u32)]
#[derive(Copy, Clone, Debug)]
pub enum ImageType {
    RAW8 = 0,
    RGB24 = 1,
    RAW16 = 2,
    Y8 = 3,
    END = 0xffffffff
}
/*
pub const ASI_GUIDE_DIRECTION_ASI_GUIDE_NORTH: ASI_GUIDE_DIRECTION = 0;
pub const ASI_GUIDE_DIRECTION_ASI_GUIDE_SOUTH: ASI_GUIDE_DIRECTION = 1;
pub const ASI_GUIDE_DIRECTION_ASI_GUIDE_EAST: ASI_GUIDE_DIRECTION = 2;
pub const ASI_GUIDE_DIRECTION_ASI_GUIDE_WEST: ASI_GUIDE_DIRECTION = 3;
pub type ASI_GUIDE_DIRECTION = u32;
*/
#[repr(u32)]
#[derive(Copy, Clone, Debug)]
pub enum FlipStatus {
    None = 0,
    Horizontal = 1,
    Vertical = 2,
    Both = 3
}

#[repr(u32)]
#[derive(Copy, Clone, Debug)]
pub enum ErrorCode {
    Success = 0,
    InvalidIndex = 1,
    InvalidId = 2,
    InvalidControlType = 3,
    CameraClosed = 4,
    CameraRemoved = 5,
    InvalidPath = 6,
    InvalidFileformat = 7,
    InvalidSize = 8,
    InvalidImgtype = 9,
    OutofBoundary = 10,
    Timeout = 11,
    InvalidSequence = 12,
    BufferTooSmall = 13,
    VideoModeActive = 14,
    ExposureInProgress = 15,
    GeneralError = 16,
    InvalidMode = 17,
    End = 18
}

#[repr(u32)]
#[derive(Copy, Clone, Debug, PartialEq)]
pub enum AsiBool {
    False = 0,
    True = 1
}

impl From<AsiBool> for bool {
    fn from(asi_bool: AsiBool) -> Self {
        match asi_bool {
            AsiBool::False => false,
            AsiBool::True => true
        }
    }
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct CameraInfo {
    pub name: [os::raw::c_char; 64usize],
    pub camera_id: os::raw::c_int,
    pub max_height: os::raw::c_long,
    pub max_width: os::raw::c_long,
    pub is_color_cam: AsiBool,
    pub bayer_pattern: BayerPattern,
    pub supported_bins: [os::raw::c_int; 16usize ],
    pub supported_video_format: [ImageType; 8usize ],
    pub pixel_size: f64,
    pub mechanical_shutter: AsiBool,
    pub ST4_port: AsiBool,
    pub is_cooler_cam: AsiBool,
    pub is_USB3_host: AsiBool,
    pub is_USB3_camera: AsiBool,
    pub elec_per_ADU: f32,
    pub bit_depth: os::raw::c_int,
    pub is_trigger_cam: AsiBool,
    pub unused: [os::raw::c_char; 16usize ]
}

#[repr(u32)]
#[derive(Copy, Clone, Debug, Eq, Hash, PartialEq)]
pub enum ControlType {
    Gain = 0,
    Exposure = 1,
    Gamma = 2,
    WB_R = 3,
    WB_B = 4,
    Offset = 5,
    BandwidthOverload = 6,
    Overclock = 7,
    Temperature = 8,
    Flip = 9,
    AutoMaxGain = 10,
    AutoMaxExp = 11,
    AutoTargetBrightness = 12,
    HardwareBin = 13,
    HighSpeedMode = 14,
    CoolerPowerPerc = 15,
    TargetTemp = 16,
    CoolerOn = 17,
    MonoBin = 18,
    FanOn = 19,
    PatternAdjust = 20,
    AntiDewHeater = 21
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct ControlCaps {
    pub name: [os::raw::c_char; 64usize ],
    pub description: [os::raw::c_char; 128usize ],
    pub max_value: os::raw::c_long,
    pub min_value: os::raw::c_long,
    pub default_value: os::raw::c_long,
    pub is_auto_supported: AsiBool,
    pub is_writable: AsiBool,
    pub control_type: ControlType,
    pub Unused: [os::raw::c_char; 32usize ]
}

#[repr(u32)]
#[derive(Copy, Clone, Debug)]
pub enum ExposureStatus {
    Idle = 0,
    Working = 1,
    Success = 2,
    Failed = 3
}

#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct ID {
    pub id: [os::raw::c_uchar; 8usize ]
}

extern "C" {
    #[doc = "this should be the first API to be called"]
    #[doc = "get number of connected ASI cameras"]
    pub fn ASIGetNumOfConnectedCameras() -> os::raw::c_int;
}
extern "C" {
#[doc = "get the product ID of each supported camera, at first set pPIDs as 0 and get length and then malloc a buffer to contain the PIDs"]
#[doc = "Return: length of the array."]
    pub fn ASIGetProductIDs(pPIDs: *mut os::raw::c_int) -> ErrorCode;
}
extern "C" {
# [ doc = "get the property of the connected cameras, you can do this without open the camera." ]
# [ doc = "Paras\u{fffd}\u{fffd}" ]
# [ doc = "ASI_CAMERA_INFO *pASICameraInfo: Pointer to structure containing the property of camera" ]
# [ doc = "user need to malloc the buffer" ]
# [ doc = "int iCameraIndex: 0 means the first connect camera, 1 means the second connect camera" ]
# [ doc = "" ]
# [ doc = "return\u{fffd}\u{fffd}" ]
# [ doc = "ASI_SUCCESS: Operation is successful" ]
# [ doc = "ASI_ERROR_INVALID_INDEX  :no camera connected or index value out of boundary" ]
    pub fn ASIGetCameraProperty(pASICameraInfo: *mut CameraInfo, iCameraIndex: os::raw::c_int ) -> ErrorCode;
}
extern "C" {
# [ doc = "Descriptions\u{fffd}\u{fffd}" ]
# [ doc = "open the camera before any operation to the camera, this will not affect the camera which is capturing" ]
# [ doc = "All APIs below need to open the camera at first." ]
# [ doc = "" ]
# [ doc = "Paras\u{fffd}\u{fffd}" ]
# [ doc = "int CameraID: this is get from the camera property use the API ASIGetCameraProperty" ]
# [ doc = "" ]
# [ doc = "return\u{fffd}\u{fffd}" ]
# [ doc = "ASI_SUCCESS: Operation is successful" ]
# [ doc = "ASI_ERROR_INVALID_ID  : no camera of this ID is connected or ID value is out of boundary" ]
# [ doc = "ASI_ERROR_CAMERA_REMOVED: failed to find the camera, maybe camera has been removed" ]
    pub fn ASIOpenCamera(iCameraID : os::raw::c_int) -> ErrorCode;
}
extern "C" {
# [ doc = "Descriptions" ]
# [ doc = "" ]
# [ doc = "Initialise the camera after open, this function may take some while, this will affect the camera which is capturing" ]
# [ doc = "" ]
# [ doc = "Paras\u{fffd}\u{fffd}" ]
# [ doc = "int CameraID: this is get from the camera property use the API ASIGetCameraProperty" ]
# [ doc = "" ]
# [ doc = "return:" ]
# [ doc = "ASI_SUCCESS : Operation is successful" ]
# [ doc = "ASI_ERROR_CAMERA_CLOSED : camera didn\'t open" ]
# [ doc = "ASI_ERROR_INVALID_ID  :no camera of this ID is connected or ID value is out of boundary" ]
    pub fn ASIInitCamera (iCameraID: os::raw::c_int) -> ErrorCode;
}
extern "C" {
# [ doc = "Descriptions\u{fffd}\u{fffd}" ]
# [ doc = "you need to close the camera to free all the resource" ]
# [ doc = "" ]
# [ doc = "" ]
# [ doc = "Paras\u{fffd}\u{fffd}" ]
# [ doc = "int CameraID: this is get from the camera property use the API ASIGetCameraProperty" ]
# [ doc = "" ]
# [ doc = "return\u{fffd}\u{fffd}" ]
# [ doc = "ASI_SUCCESS :it will return success even the camera already closed" ]
# [ doc = "ASI_ERROR_INVALID_ID  :no camera of this ID is connected or ID value is out of boundary" ]
    pub fn ASICloseCamera (iCameraID : os::raw::c_int) -> ErrorCode;
}
extern "C" {
# [ doc = "Descriptions\u{fffd}\u{fffd}" ]
# [ doc = "Get number of controls available for this camera. the camera need be opened at first." ]
# [ doc = "" ]
# [ doc = "" ]
# [ doc = "" ]
# [ doc = "Paras\u{fffd}\u{fffd}" ]
# [ doc = "int CameraID: this is get from the camera property use the API ASIGetCameraProperty" ]
# [ doc = "int * piNumberOfControls: pointer to an int to save the number of controls" ]
# [ doc = "" ]
# [ doc = "return:" ]
# [ doc = "ASI_SUCCESS : Operation is successful" ]
# [ doc = "ASI_ERROR_CAMERA_CLOSED : camera didn\'t open" ]
# [ doc = "ASI_ERROR_INVALID_ID  :no camera of this ID is connected or ID value is out of boundary" ]
    pub fn ASIGetNumOfControls ( iCameraID: os::raw::c_int , piNumberOfControls : * mut os::raw::c_int ) -> ErrorCode;
}
extern "C" {
# [ doc = "Descriptions\u{fffd}\u{fffd}" ]
# [ doc = "Get controls property available for this camera. the camera need be opened at first." ]
# [ doc = "user need to malloc and maintain the buffer." ]
# [ doc = "" ]
# [ doc = "" ]
# [ doc = "" ]
# [ doc = "Paras\u{fffd}\u{fffd}" ]
# [ doc = "int CameraID: this is get from the camera property use the API ASIGetCameraProperty" ]
# [ doc = "int iControlIndex: index of control, NOT control type" ]
# [ doc = "ControlCaps * pControlCaps: Pointer to structure containing the property of the control" ]
# [ doc = "user need to malloc the buffer" ]
# [ doc = "" ]
# [ doc = "return:" ]
# [ doc = "ASI_SUCCESS : Operation is successful" ]
# [ doc = "ASI_ERROR_CAMERA_CLOSED : camera didn\'t open" ]
# [ doc = "ASI_ERROR_INVALID_ID  :no camera of this ID is connected or ID value is out of boundary" ]
    pub fn ASIGetControlCaps ( iCameraID: os::raw::c_int , iControlIndex: os::raw::c_int , pControlCaps : * mut ControlCaps ) -> ErrorCode;
}
extern "C" {
# [ doc = "Descriptions\u{fffd}\u{fffd}" ]
# [ doc = "Get controls property value and auto value" ]
# [ doc = "note:the value of the temperature is the float value * 10 to convert it to long type, control name is \"Temperature\"" ]
# [ doc = "because long is the only type for control(except cooler\'s target temperature, because it is an integer)" ]
# [ doc = "" ]
# [ doc = "Paras\u{fffd}\u{fffd}" ]
# [ doc = "int CameraID: this is get from the camera property use the API ASIGetCameraProperty" ]
# [ doc = "int ControlType: this is get from control property use the API ASIGetControlCaps" ]
# [ doc = "long *plValue: pointer to the value you want to save the value get from control" ]
# [ doc = "AsiBool *pbAuto: pointer to the AsiBool type" ]
# [ doc = "" ]
# [ doc = "return:" ]
# [ doc = "ASI_SUCCESS : Operation is successful" ]
# [ doc = "ASI_ERROR_CAMERA_CLOSED : camera didn\'t open" ]
# [ doc = "ASI_ERROR_INVALID_ID  :no camera of this ID is connected or ID value is out of boundary" ]
# [ doc = "ASI_ERROR_INVALID_CONTROL_TYPE, //invalid Control type" ]
    pub fn ASIGetControlValue ( iCameraID: os::raw::c_int , ControlType: os::raw::c_int , plValue : * mut os::raw::c_long , pbAuto : * mut os::raw::c_int ) -> ErrorCode;
}
extern "C" {
# [ doc = "Descriptions\u{fffd}\u{fffd}" ]
# [ doc = "Set controls property value and auto value" ]
# [ doc = "it will return success and set the max value or min value if the value is beyond the boundary" ]
# [ doc = "" ]
# [ doc = "" ]
# [ doc = "Paras\u{fffd}\u{fffd}" ]
# [ doc = "int CameraID: this is get from the camera property use the API ASIGetCameraProperty" ]
# [ doc = "int ControlType: this is get from control property use the API ASIGetControlCaps" ]
# [ doc = "long lValue: the value set to the control" ]
# [ doc = "AsiBool bAuto: set the control auto" ]
# [ doc = "" ]
# [ doc = "return:" ]
# [ doc = "ASI_SUCCESS : Operation is successful" ]
# [ doc = "ASI_ERROR_CAMERA_CLOSED : camera didn\'t open" ]
# [ doc = "ASI_ERROR_INVALID_ID  :no camera of this ID is connected or ID value is out of boundary" ]
# [ doc = "ASI_ERROR_INVALID_CONTROL_TYPE, //invalid Control type" ]
# [ doc = "ASI_ERROR_GENERAL_ERROR,//general error, eg: value is out of valid range; operate to camera hareware failed" ]
    pub fn ASISetControlValue ( iCameraID: os::raw::c_int , ControlType: os::raw::c_int , lValue: os::raw::c_long , bAuto: os::raw::c_int ) -> ErrorCode;
}
extern "C" {
# [ doc = "Descriptions\u{fffd}\u{fffd}" ]
# [ doc = "set the ROI area before capture." ]
# [ doc = "you must stop capture before call it." ]
# [ doc = "the width and height is the value after binning." ]
# [ doc = "ie. you need to set width to 640 and height to 480 if you want to run at 640X480@BIN2" ]
# [ doc = "ASI120\'s data size must be times of 1024 which means width*height%1024=0" ]
# [ doc = "Paras\u{fffd}\u{fffd}" ]
# [ doc = "int CameraID: this is get from the camera property use the API ASIGetCameraProperty" ]
# [ doc = "int iWidth,  the width of the ROI area. Make sure iWidth%8 = 0." ]
# [ doc = "int iHeight,  the height of the ROI area. Make sure iHeight%2 = 0," ]
# [ doc = "further, for USB2.0 camera ASI120, please make sure that iWidth*iHeight%1024=0." ]
# [ doc = "int iBin,   binning method. bin1=1, bin2=2" ]
# [ doc = "ASI_IMG_TYPE Img_type: the output format you want" ]
# [ doc = "" ]
# [ doc = "return:" ]
# [ doc = "ASI_SUCCESS : Operation is successful" ]
# [ doc = "ASI_ERROR_CAMERA_CLOSED : camera didn\'t open" ]
# [ doc = "ASI_ERROR_INVALID_ID  :no camera of this ID is connected or ID value is out of boundary" ]
# [ doc = "ASI_ERROR_INVALID_SIZE, //wrong video format size" ]
# [ doc = "ASI_ERROR_INVALID_IMGTYPE, //unsupported image format, make sure iWidth and iHeight and binning is set correct" ]
    pub fn ASISetROIFormat ( iCameraID: os::raw::c_int , iWidth: os::raw::c_int , iHeight: os::raw::c_int , iBin: os::raw::c_int , Img_type: os::raw::c_int ) -> ErrorCode;
}
extern "C" {
# [ doc = "Descriptions\u{fffd}\u{fffd}" ]
# [ doc = "Start camera exposure. the following 4 API is usually used when long exposure required" ]
# [ doc = "start exposure  and check the exposure status then get the data" ]
# [ doc = "" ]
# [ doc = "" ]
# [ doc = "Paras\u{fffd}\u{fffd}" ]
# [ doc = "int CameraID: this is get from the camera property use the API ASIGetCameraProperty" ]
# [ doc = "AsiBool bIsDark: means dark frame if there is mechanical shutter on the camera. otherwise useless" ]
# [ doc = "" ]
# [ doc = "return:" ]
# [ doc = "ASI_SUCCESS : Operation is successful" ]
# [ doc = "ASI_ERROR_CAMERA_CLOSED : camera didn\'t open" ]
# [ doc = "ASI_ERROR_INVALID_ID  :no camera of this ID is connected or ID value is out of boundary" ]
# [ doc = "ASI_ERROR_VIDEO_MODE_ACTIVE: video mode is working, you need to stop video capture first" ]
    pub fn ASIStartExposure ( iCameraID: os::raw::c_int , bIsDark: os::raw::c_int ) -> ErrorCode;
}
extern "C" {
# [ doc = "Descriptions\u{fffd}\u{fffd}" ]
# [ doc = "to cancel the long exposure which is on." ]
# [ doc = "" ]
# [ doc = "" ]
# [ doc = "Paras\u{fffd}\u{fffd}" ]
# [ doc = "int CameraID: this is get from the camera property use the API ASIGetCameraProperty" ]
# [ doc = "" ]
# [ doc = "" ]
# [ doc = "return:" ]
# [ doc = "ASI_SUCCESS : Operation is successful" ]
# [ doc = "ASI_ERROR_CAMERA_CLOSED : camera didn\'t open" ]
# [ doc = "ASI_ERROR_INVALID_ID  :no camera of this ID is connected or ID value is out of boundary" ]
    pub fn ASIStopExposure ( iCameraID: os::raw::c_int ) -> ErrorCode;
}
extern "C" {
# [ doc = "Descriptions\u{fffd}\u{fffd}" ]
# [ doc = "to get the exposure status, work with ASIStartExposure." ]
# [ doc = "you can read the data if get ASI_EXP_SUCCESS. or have to restart exposure again" ]
# [ doc = "if get ASI_EXP_FAILED" ]
# [ doc = "" ]
# [ doc = "Paras\u{fffd}\u{fffd}" ]
# [ doc = "int CameraID: this is get from the camera property use the API ASIGetCameraProperty" ]
# [ doc = "ASI_EXPOSURE_STATUS *pExpStatus: the exposure status" ]
# [ doc = "" ]
# [ doc = "" ]
# [ doc = "return:" ]
# [ doc = "ASI_SUCCESS : Operation is successful" ]
# [ doc = "ASI_ERROR_CAMERA_CLOSED : camera didn\'t open" ]
# [ doc = "ASI_ERROR_INVALID_ID  :no camera of this ID is connected or ID value is out of boundary" ]
    pub fn ASIGetExpStatus ( iCameraID: os::raw::c_int , pExpStatus : * mut ExposureStatus ) -> ErrorCode;
}
extern "C" {
# [ doc = "Descriptions\u{fffd}\u{fffd}" ]
# [ doc = "get data after exposure." ]
# [ doc = "please make sure the buffer size is biger enough to hold one image" ]
# [ doc = "otherwise the this API will crash" ]
# [ doc = "" ]
# [ doc = "" ]
# [ doc = "Paras\u{fffd}\u{fffd}" ]
# [ doc = "int CameraID: this is get from the camera property use the API ASIGetCameraProperty" ]
# [ doc = "unsigned char* pBuffer, caller need to malloc the buffer, make sure the size is big enough" ]
# [ doc = "the size in byte:" ]
# [ doc = "8bit mono:width*height" ]
# [ doc = "16bit mono:width*height*2" ]
# [ doc = "RGB24:width*height*3" ]
# [ doc = "" ]
# [ doc = "" ]
# [ doc = "return:" ]
# [ doc = "ASI_SUCCESS : Operation is successful" ]
# [ doc = "ASI_ERROR_CAMERA_CLOSED : camera didn\'t open" ]
# [ doc = "ASI_ERROR_INVALID_ID  :no camera of this ID is connected or ID value is out of boundary" ]
# [ doc = "ASI_ERROR_TIMEOUT: no image get and timeout" ]
    pub fn ASIGetDataAfterExp ( iCameraID: os::raw::c_int , pBuffer : * mut os::raw::c_uchar , lBuffSize: os::raw::c_long ) -> ErrorCode;
}
/*
# [ repr ( C ) ]
# [ derive ( Debug , Copy , Clone ) ]
    pub struct _ASI_SUPPORTED_MODE { pub SupportedCameraMode : [ ASI_CAMERA_MODE;
16usize ] , }
} pub type ASI_SUPPORTED_MODE = _ASI_SUPPORTED_MODE;
extern "C" {
# [ doc = "Descriptions\u{fffd}\u{fffd}" ]
# [ doc = "this should be the first API to be called" ]
# [ doc = "get number of connected ASI cameras," ]
# [ doc = "" ]
# [ doc = "Paras\u{fffd}\u{fffd}" ]
# [ doc = "" ]
# [ doc = "return\u{fffd}\u{fffd}number of connected ASI cameras. 1 means 1 camera connected." ]
    pub fn ASIGetNumOfConnectedCameras ( ) -> ErrorCode;
}
extern "C" {
# [ doc = "Descriptions:" ]
# [ doc = "get the product ID of each supported camera, at first set pPIDs as 0 and get length and then malloc a buffer to contain the PIDs" ]
# [ doc = "" ]
# [ doc = "Paras:" ]
# [ doc = "int* pPIDs: pointer to array of PIDs" ]
# [ doc = "" ]
# [ doc = "Return: length of the array." ]
    pub fn ASIGetProductIDs ( pPIDs : * mut os::raw::c_int ) -> ErrorCode;
}
extern "C" {
# [ doc = "Descriptions\u{fffd}\u{fffd}" ]
# [ doc = "get the property of the connected cameras, you can do this without open the camera." ]
# [ doc = "here is the sample code:" ]
# [ doc = "" ]
# [ doc = "int iNumofConnectCameras = ASIGetNumOfConnectedCameras();" ]
# [ doc = "ASI_CAMERA_INFO **ppASICameraInfo = (ASI_CAMERA_INFO **)malloc(sizeof(ASI_CAMERA_INFO *)*iNumofConnectCameras);" ]
# [ doc = "for(int i = 0; i < iNumofConnectCameras; i++)" ]
# [ doc = "{" ]
# [ doc = "ppASICameraInfo[i] = (ASI_CAMERA_INFO *)malloc(sizeof(ASI_CAMERA_INFO ));" ]
# [ doc = "ASIGetCameraProperty(ppASICameraInfo[i], i);" ]
# [ doc = "}" ]
# [ doc = "" ]
# [ doc = "Paras\u{fffd}\u{fffd}" ]
# [ doc = "ASI_CAMERA_INFO *pASICameraInfo: Pointer to structure containing the property of camera" ]
# [ doc = "user need to malloc the buffer" ]
# [ doc = "int iCameraIndex: 0 means the first connect camera, 1 means the second connect camera" ]
# [ doc = "" ]
# [ doc = "return\u{fffd}\u{fffd}" ]
# [ doc = "ASI_SUCCESS: Operation is successful" ]
# [ doc = "ASI_ERROR_INVALID_INDEX  :no camera connected or index value out of boundary" ]
    pub fn ASIGetCameraProperty ( pASICameraInfo : * mut ASI_CAMERA_INFO , iCameraIndex: os::raw::c_int ) -> ErrorCode;
}
extern "C" {
# [ doc = "Descriptions\u{fffd}\u{fffd}" ]
# [ doc = "open the camera before any operation to the camera, this will not affect the camera which is capturing" ]
# [ doc = "All APIs below need to open the camera at first." ]
# [ doc = "" ]
# [ doc = "Paras\u{fffd}\u{fffd}" ]
# [ doc = "int CameraID: this is get from the camera property use the API ASIGetCameraProperty" ]
# [ doc = "" ]
# [ doc = "return\u{fffd}\u{fffd}" ]
# [ doc = "ASI_SUCCESS: Operation is successful" ]
# [ doc = "ASI_ERROR_INVALID_ID  : no camera of this ID is connected or ID value is out of boundary" ]
# [ doc = "ASI_ERROR_CAMERA_REMOVED: failed to find the camera, maybe camera has been removed" ]
    pub fn ASIOpenCamera ( iCameraID: os::raw::c_int ) -> ErrorCode;
}
extern "C" {
# [ doc = "Descriptions" ]
# [ doc = "" ]
# [ doc = "Initialise the camera after open, this function may take some while, this will affect the camera which is capturing" ]
# [ doc = "" ]
# [ doc = "Paras\u{fffd}\u{fffd}" ]
# [ doc = "int CameraID: this is get from the camera property use the API ASIGetCameraProperty" ]
# [ doc = "" ]
# [ doc = "return:" ]
# [ doc = "ASI_SUCCESS : Operation is successful" ]
# [ doc = "ASI_ERROR_CAMERA_CLOSED : camera didn\'t open" ]
# [ doc = "ASI_ERROR_INVALID_ID  :no camera of this ID is connected or ID value is out of boundary" ]
    pub fn ASIInitCamera ( iCameraID: os::raw::c_int ) -> ErrorCode;
}
extern "C" {
# [ doc = "Descriptions\u{fffd}\u{fffd}" ]
# [ doc = "you need to close the camera to free all the resource" ]
# [ doc = "" ]
# [ doc = "" ]
# [ doc = "Paras\u{fffd}\u{fffd}" ]
# [ doc = "int CameraID: this is get from the camera property use the API ASIGetCameraProperty" ]
# [ doc = "" ]
# [ doc = "return\u{fffd}\u{fffd}" ]
# [ doc = "ASI_SUCCESS :it will return success even the camera already closed" ]
# [ doc = "ASI_ERROR_INVALID_ID  :no camera of this ID is connected or ID value is out of boundary" ]
    pub fn ASICloseCamera ( iCameraID: os::raw::c_int ) -> ErrorCode;
}
extern "C" {
# [ doc = "Descriptions\u{fffd}\u{fffd}" ]
# [ doc = "Get number of controls available for this camera. the camera need be opened at first." ]
# [ doc = "" ]
# [ doc = "" ]
# [ doc = "" ]
# [ doc = "Paras\u{fffd}\u{fffd}" ]
# [ doc = "int CameraID: this is get from the camera property use the API ASIGetCameraProperty" ]
# [ doc = "int * piNumberOfControls: pointer to an int to save the number of controls" ]
# [ doc = "" ]
# [ doc = "return:" ]
# [ doc = "ASI_SUCCESS : Operation is successful" ]
# [ doc = "ASI_ERROR_CAMERA_CLOSED : camera didn\'t open" ]
# [ doc = "ASI_ERROR_INVALID_ID  :no camera of this ID is connected or ID value is out of boundary" ]
    pub fn ASIGetNumOfControls ( iCameraID: os::raw::c_int , piNumberOfControls : * mut os::raw::c_int ) -> ErrorCode;
}
extern "C" {
# [ doc = "Descriptions\u{fffd}\u{fffd}" ]
# [ doc = "Get controls property available for this camera. the camera need be opened at first." ]
# [ doc = "user need to malloc and maintain the buffer." ]
# [ doc = "" ]
# [ doc = "" ]
# [ doc = "" ]
# [ doc = "Paras\u{fffd}\u{fffd}" ]
# [ doc = "int CameraID: this is get from the camera property use the API ASIGetCameraProperty" ]
# [ doc = "int iControlIndex: index of control, NOT control type" ]
# [ doc = "ControlCaps * pControlCaps: Pointer to structure containing the property of the control" ]
# [ doc = "user need to malloc the buffer" ]
# [ doc = "" ]
# [ doc = "return:" ]
# [ doc = "ASI_SUCCESS : Operation is successful" ]
# [ doc = "ASI_ERROR_CAMERA_CLOSED : camera didn\'t open" ]
# [ doc = "ASI_ERROR_INVALID_ID  :no camera of this ID is connected or ID value is out of boundary" ]
    pub fn ASIGetControlCaps ( iCameraID: os::raw::c_int , iControlIndex: os::raw::c_int , pControlCaps : * mut ControlCaps ) -> ErrorCode;
}
extern "C" {
# [ doc = "Descriptions\u{fffd}\u{fffd}" ]
# [ doc = "Get controls property value and auto value" ]
# [ doc = "note:the value of the temperature is the float value * 10 to convert it to long type, control name is \"Temperature\"" ]
# [ doc = "because long is the only type for control(except cooler\'s target temperature, because it is an integer)" ]
# [ doc = "" ]
# [ doc = "Paras\u{fffd}\u{fffd}" ]
# [ doc = "int CameraID: this is get from the camera property use the API ASIGetCameraProperty" ]
# [ doc = "int ControlType: this is get from control property use the API ASIGetControlCaps" ]
# [ doc = "long *plValue: pointer to the value you want to save the value get from control" ]
# [ doc = "AsiBool *pbAuto: pointer to the AsiBool type" ]
# [ doc = "" ]
# [ doc = "return:" ]
# [ doc = "ASI_SUCCESS : Operation is successful" ]
# [ doc = "ASI_ERROR_CAMERA_CLOSED : camera didn\'t open" ]
# [ doc = "ASI_ERROR_INVALID_ID  :no camera of this ID is connected or ID value is out of boundary" ]
# [ doc = "ASI_ERROR_INVALID_CONTROL_TYPE, //invalid Control type" ]
    pub fn ASIGetControlValue ( iCameraID: os::raw::c_int , ControlType: os::raw::c_int , plValue : * mut os::raw::c_long , pbAuto : * mut os::raw::c_int ) -> ErrorCode;
}
extern "C" {
# [ doc = "Descriptions\u{fffd}\u{fffd}" ]
# [ doc = "Set controls property value and auto value" ]
# [ doc = "it will return success and set the max value or min value if the value is beyond the boundary" ]
# [ doc = "" ]
# [ doc = "" ]
# [ doc = "Paras\u{fffd}\u{fffd}" ]
# [ doc = "int CameraID: this is get from the camera property use the API ASIGetCameraProperty" ]
# [ doc = "int ControlType: this is get from control property use the API ASIGetControlCaps" ]
# [ doc = "long lValue: the value set to the control" ]
# [ doc = "AsiBool bAuto: set the control auto" ]
# [ doc = "" ]
# [ doc = "return:" ]
# [ doc = "ASI_SUCCESS : Operation is successful" ]
# [ doc = "ASI_ERROR_CAMERA_CLOSED : camera didn\'t open" ]
# [ doc = "ASI_ERROR_INVALID_ID  :no camera of this ID is connected or ID value is out of boundary" ]
# [ doc = "ASI_ERROR_INVALID_CONTROL_TYPE, //invalid Control type" ]
# [ doc = "ASI_ERROR_GENERAL_ERROR,//general error, eg: value is out of valid range; operate to camera hareware failed" ]
    pub fn ASISetControlValue ( iCameraID: os::raw::c_int , ControlType: os::raw::c_int , lValue: os::raw::c_long , bAuto: os::raw::c_int ) -> ErrorCode;
}
extern "C" {
# [ doc = "Descriptions\u{fffd}\u{fffd}" ]
# [ doc = "set the ROI area before capture." ]
# [ doc = "you must stop capture before call it." ]
# [ doc = "the width and height is the value after binning." ]
# [ doc = "ie. you need to set width to 640 and height to 480 if you want to run at 640X480@BIN2" ]
# [ doc = "ASI120\'s data size must be times of 1024 which means width*height%1024=0" ]
# [ doc = "Paras\u{fffd}\u{fffd}" ]
# [ doc = "int CameraID: this is get from the camera property use the API ASIGetCameraProperty" ]
# [ doc = "int iWidth,  the width of the ROI area. Make sure iWidth%8 = 0." ]
# [ doc = "int iHeight,  the height of the ROI area. Make sure iHeight%2 = 0," ]
# [ doc = "further, for USB2.0 camera ASI120, please make sure that iWidth*iHeight%1024=0." ]
# [ doc = "int iBin,   binning method. bin1=1, bin2=2" ]
# [ doc = "ASI_IMG_TYPE Img_type: the output format you want" ]
# [ doc = "" ]
# [ doc = "return:" ]
# [ doc = "ASI_SUCCESS : Operation is successful" ]
# [ doc = "ASI_ERROR_CAMERA_CLOSED : camera didn\'t open" ]
# [ doc = "ASI_ERROR_INVALID_ID  :no camera of this ID is connected or ID value is out of boundary" ]
# [ doc = "ASI_ERROR_INVALID_SIZE, //wrong video format size" ]
# [ doc = "ASI_ERROR_INVALID_IMGTYPE, //unsupported image format, make sure iWidth and iHeight and binning is set correct" ]
    pub fn ASISetROIFormat ( iCameraID: os::raw::c_int , iWidth: os::raw::c_int , iHeight: os::raw::c_int , iBin: os::raw::c_int , Img_type: os::raw::c_int ) -> ErrorCode;
}
extern "C" {
# [ doc = "Descriptions\u{fffd}\u{fffd}" ]
# [ doc = "Get the current ROI area setting ." ]
# [ doc = "" ]
# [ doc = "Paras\u{fffd}\u{fffd}" ]
# [ doc = "int CameraID: this is get from the camera property use the API ASIGetCameraProperty" ]
# [ doc = "int *piWidth,  pointer to the width of the ROI area" ]
# [ doc = "int *piHeight, pointer to the height of the ROI area." ]
# [ doc = "int *piBin,   pointer to binning method. bin1=1, bin2=2" ]
# [ doc = "ASI_IMG_TYPE *pImg_type: pointer to the output format" ]
# [ doc = "" ]
# [ doc = "return:" ]
# [ doc = "ASI_SUCCESS : Operation is successful" ]
# [ doc = "ASI_ERROR_CAMERA_CLOSED : camera didn\'t open" ]
# [ doc = "ASI_ERROR_INVALID_ID  :no camera of this ID is connected or ID value is out of boundary" ]
    pub fn ASIGetROIFormat ( iCameraID: os::raw::c_int , piWidth : * mut os::raw::c_int , piHeight : * mut os::raw::c_int , piBin : * mut os::raw::c_int , pImg_type : * mut os::raw::c_int ) -> ErrorCode;
}
extern "C" {
# [ doc = "Descriptions\u{fffd}\u{fffd}" ]
# [ doc = "Set the start position of the ROI area." ]
# [ doc = "you can call this API to move the ROI area when video is streaming" ]
# [ doc = "the camera will set the ROI area to the center of the full image as default" ]
# [ doc = "at bin2 or bin3 mode, the position is relative to the image after binning" ]
# [ doc = "" ]
# [ doc = "" ]
# [ doc = "Paras\u{fffd}\u{fffd}" ]
# [ doc = "int CameraID: this is get from the camera property use the API ASIGetCameraProperty" ]
# [ doc = "int iStartX, pointer to the start X" ]
# [ doc = "int iStartY  pointer to the start Y" ]
# [ doc = "" ]
# [ doc = "return:" ]
# [ doc = "ASI_SUCCESS : Operation is successful" ]
# [ doc = "ASI_ERROR_CAMERA_CLOSED : camera didn\'t open" ]
# [ doc = "ASI_ERROR_INVALID_ID  :no camera of this ID is connected or ID value is out of boundary" ]
# [ doc = "ASI_ERROR_OUTOF_BOUNDARY: the start x and start y make the image out of boundary" ]
    pub fn ASISetStartPos ( iCameraID: os::raw::c_int , iStartX: os::raw::c_int , iStartY: os::raw::c_int ) -> ErrorCode;
}
extern "C" {
# [ doc = "Descriptions\u{fffd}\u{fffd}" ]
# [ doc = "Get the start position of current ROI area ." ]
# [ doc = "" ]
# [ doc = "Paras\u{fffd}\u{fffd}" ]
# [ doc = "int CameraID: this is get from the camera property use the API ASIGetCameraProperty" ]
# [ doc = "int *piStartX, pointer to the start X" ]
# [ doc = "int *piStartY  pointer to the start Y" ]
# [ doc = "" ]
# [ doc = "return:" ]
# [ doc = "ASI_SUCCESS : Operation is successful" ]
# [ doc = "ASI_ERROR_CAMERA_CLOSED : camera didn\'t open" ]
# [ doc = "ASI_ERROR_INVALID_ID  :no camera of this ID is connected or ID value is out of boundary" ]
    pub fn ASIGetStartPos ( iCameraID: os::raw::c_int , piStartX : * mut os::raw::c_int , piStartY : * mut os::raw::c_int ) -> ErrorCode;
}
extern "C" {
# [ doc = "Descriptions\u{fffd}\u{fffd}" ]
# [ doc = "Get the droped frames ." ]
# [ doc = "drop frames happen when USB is traffic or harddisk write speed is slow" ]
# [ doc = "it will reset to 0 after stop capture" ]
# [ doc = "" ]
# [ doc = "Paras\u{fffd}\u{fffd}" ]
# [ doc = "int CameraID: this is get from the camera property use the API ASIGetCameraProperty" ]
# [ doc = "int *piDropFrames pointer to drop frames" ]
# [ doc = "" ]
# [ doc = "return:" ]
# [ doc = "ASI_SUCCESS : Operation is successful" ]
# [ doc = "ASI_ERROR_CAMERA_CLOSED : camera didn\'t open" ]
# [ doc = "ASI_ERROR_INVALID_ID  :no camera of this ID is connected or ID value is out of boundary" ]
    pub fn ASIGetDroppedFrames ( iCameraID: os::raw::c_int , piDropFrames : * mut os::raw::c_int ) -> ErrorCode;
}
extern "C" {
# [ doc = "Descriptions\u{fffd}\u{fffd}" ]
# [ doc = "provide a dark file\'s path to the function and enable dark subtract" ]
# [ doc = "this is used when there is hot pixel or need to do long exposure" ]
# [ doc = "you\'d better make this dark file from the  \"dark subtract\" funtion" ]
# [ doc = "of the \"video capture filter\" directshow page." ]
# [ doc = "the dark file\'s size should be the same of camera\'s max width and height" ]
# [ doc = "and should be RGB8 raw format.it will on even you changed the ROI setting" ]
# [ doc = "it only correct the hot pixels if out put isn\'t 16bit." ]
# [ doc = "" ]
# [ doc = "it will be remembered in registry. so \"Dark subtract\" is on next time if you close your app." ]
# [ doc = "" ]
# [ doc = "" ]
# [ doc = "Paras\u{fffd}\u{fffd}" ]
# [ doc = "int CameraID: this is get from the camera property use the API ASIGetCameraProperty" ]
# [ doc = "char *pcBMPPath: the path to the bmp dark file." ]
# [ doc = "return\u{fffd}\u{fffd}" ]
# [ doc = "ASI_SUCCESS : Operation is successful" ]
# [ doc = "ASI_ERROR_INVALID_ID  :no camera of this ID is connected or ID value is out of boundary" ]
# [ doc = "ASI_ERROR_CAMERA_CLOSED : camera didn\'t open" ]
# [ doc = "ASI_ERROR_INVALID_PATH, //cannot find the path of the file" ]
# [ doc = "ASI_ERROR_INVALID_FILEFORMAT, //the dark file\'s size should be the same of camera\'s max width and height" ]
    pub fn ASIEnableDarkSubtract ( iCameraID: os::raw::c_int , pcBMPPath : * mut os::raw::c_char ) -> ErrorCode;
}
extern "C" {
# [ doc = "Descriptions\u{fffd}\u{fffd}" ]
# [ doc = "Disable the dark subtract function." ]
# [ doc = "you\'d better call it at start if you don\'t want to use it." ]
# [ doc = "because dark subtract function is remembered on windows platform" ]
# [ doc = "" ]
# [ doc = "" ]
# [ doc = "Paras\u{fffd}\u{fffd}" ]
# [ doc = "int CameraID: this is get from the camera property use the API ASIGetCameraProperty" ]
# [ doc = "" ]
# [ doc = "return:" ]
# [ doc = "ASI_SUCCESS : Operation is successful" ]
# [ doc = "ASI_ERROR_INVALID_ID  :no camera of this ID is connected or ID value is out of boundary" ]
# [ doc = "ASI_ERROR_CAMERA_CLOSED : camera didn\'t open" ]
    pub fn ASIDisableDarkSubtract ( iCameraID: os::raw::c_int ) -> ErrorCode;
}
extern "C" {
# [ doc = "Descriptions\u{fffd}\u{fffd}" ]
# [ doc = "Start video capture" ]
# [ doc = "then you can get the data from the API ASIGetVideoData" ]
# [ doc = "" ]
# [ doc = "" ]
# [ doc = "Paras\u{fffd}\u{fffd}" ]
# [ doc = "int CameraID: this is get from the camera property use the API ASIGetCameraProperty" ]
# [ doc = "" ]
# [ doc = "return:" ]
# [ doc = "ASI_SUCCESS : Operation is successful, it will return success if already started" ]
# [ doc = "ASI_ERROR_CAMERA_CLOSED : camera didn\'t open" ]
# [ doc = "ASI_ERROR_INVALID_ID  :no camera of this ID is connected or ID value is out of boundary" ]
# [ doc = "ASI_ERROR_EXPOSURE_IN_PROGRESS: snap mode is working, you need to stop snap first" ]
    pub fn ASIStartVideoCapture ( iCameraID: os::raw::c_int ) -> ErrorCode;
}
extern "C" {
# [ doc = "Descriptions\u{fffd}\u{fffd}" ]
# [ doc = "Stop video capture" ]
# [ doc = "" ]
# [ doc = "" ]
# [ doc = "Paras\u{fffd}\u{fffd}" ]
# [ doc = "int CameraID: this is get from the camera property use the API ASIGetCameraProperty" ]
# [ doc = "" ]
# [ doc = "return:" ]
# [ doc = "ASI_SUCCESS : Operation is successful, it will return success if already stopped" ]
# [ doc = "ASI_ERROR_CAMERA_CLOSED : camera didn\'t open" ]
# [ doc = "ASI_ERROR_INVALID_ID  :no camera of this ID is connected or ID value is out of boundary" ]
    pub fn ASIStopVideoCapture ( iCameraID: os::raw::c_int ) -> ErrorCode;
}
extern "C" {
# [ doc = "Descriptions\u{fffd}\u{fffd}" ]
# [ doc = "get data from the video buffer.the buffer is very small" ]
# [ doc = "you need to call this API as fast as possible, otherwise frame will be discarded" ]
# [ doc = "so the best way is maintain one buffer loop and call this API in a loop" ]
# [ doc = "please make sure the buffer size is biger enough to hold one image" ]
# [ doc = "otherwise the this API will crash" ]
# [ doc = "" ]
# [ doc = "" ]
# [ doc = "Paras\u{fffd}\u{fffd}" ]
# [ doc = "int CameraID: this is get from the camera property use the API ASIGetCameraProperty" ]
# [ doc = "unsigned char* pBuffer, caller need to malloc the buffer, make sure the size is big enough" ]
# [ doc = "the size in byte:" ]
# [ doc = "8bit mono:width*height" ]
# [ doc = "16bit mono:width*height*2" ]
# [ doc = "RGB24:width*height*3" ]
# [ doc = "" ]
# [ doc = "int iWaitms, this API will block and wait iWaitms to get one image. the unit is ms" ]
# [ doc = "-1 means wait forever. this value is recommend set to exposure*2+500ms" ]
# [ doc = "" ]
# [ doc = "return:" ]
# [ doc = "ASI_SUCCESS : Operation is successful" ]
# [ doc = "ASI_ERROR_CAMERA_CLOSED : camera didn\'t open" ]
# [ doc = "ASI_ERROR_INVALID_ID  :no camera of this ID is connected or ID value is out of boundary" ]
# [ doc = "ASI_ERROR_TIMEOUT: no image get and timeout" ]
    pub fn ASIGetVideoData ( iCameraID: os::raw::c_int , pBuffer : * mut os::raw::c_uchar , lBuffSize: os::raw::c_long , iWaitms: os::raw::c_int ) -> ErrorCode;
}
extern "C" {
# [ doc = "Descriptions\u{fffd}\u{fffd}" ]
# [ doc = "PulseGuide of the ST4 port on. this function only work on the module which have ST4 port" ]
# [ doc = "" ]
# [ doc = "" ]
# [ doc = "Paras\u{fffd}\u{fffd}" ]
# [ doc = "int CameraID: this is get from the camera property use the API ASIGetCameraProperty" ]
# [ doc = "ASI_GUIDE_DIRECTION direction the direction of guider" ]
# [ doc = "" ]
# [ doc = "return:" ]
# [ doc = "ASI_SUCCESS : Operation is successful" ]
# [ doc = "ASI_ERROR_CAMERA_CLOSED : camera didn\'t open" ]
# [ doc = "ASI_ERROR_INVALID_ID  :no camera of this ID is connected or ID value is out of boundary" ]
    pub fn ASIPulseGuideOn ( iCameraID: os::raw::c_int , direction: os::raw::c_int ) -> ErrorCode;
}
extern "C" {
# [ doc = "Descriptions\u{fffd}\u{fffd}" ]
# [ doc = "PulseGuide of the ST4 port off. this function only work on the module which have ST4 port" ]
# [ doc = "make sure where is ASIPulseGuideOn and there is ASIPulseGuideOff" ]
# [ doc = "" ]
# [ doc = "Paras\u{fffd}\u{fffd}" ]
# [ doc = "int CameraID: this is get from the camera property use the API ASIGetCameraProperty" ]
# [ doc = "ASI_GUIDE_DIRECTION direction the direction of guider" ]
# [ doc = "" ]
# [ doc = "return:" ]
# [ doc = "ASI_SUCCESS : Operation is successful" ]
# [ doc = "ASI_ERROR_CAMERA_CLOSED : camera didn\'t open" ]
# [ doc = "ASI_ERROR_INVALID_ID  :no camera of this ID is connected or ID value is out of boundary" ]
    pub fn ASIPulseGuideOff ( iCameraID: os::raw::c_int , direction: os::raw::c_int ) -> ErrorCode;
}
extern "C" {
# [ doc = "Descriptions\u{fffd}\u{fffd}" ]
# [ doc = "Start camera exposure. the following 4 API is usually used when long exposure required" ]
# [ doc = "start exposure  and check the exposure status then get the data" ]
# [ doc = "" ]
# [ doc = "" ]
# [ doc = "Paras\u{fffd}\u{fffd}" ]
# [ doc = "int CameraID: this is get from the camera property use the API ASIGetCameraProperty" ]
# [ doc = "AsiBool bIsDark: means dark frame if there is mechanical shutter on the camera. otherwise useless" ]
# [ doc = "" ]
# [ doc = "return:" ]
# [ doc = "ASI_SUCCESS : Operation is successful" ]
# [ doc = "ASI_ERROR_CAMERA_CLOSED : camera didn\'t open" ]
# [ doc = "ASI_ERROR_INVALID_ID  :no camera of this ID is connected or ID value is out of boundary" ]
# [ doc = "ASI_ERROR_VIDEO_MODE_ACTIVE: video mode is working, you need to stop video capture first" ]
    pub fn ASIStartExposure ( iCameraID: os::raw::c_int , bIsDark: os::raw::c_int ) -> ErrorCode;
}
extern "C" {
# [ doc = "Descriptions\u{fffd}\u{fffd}" ]
# [ doc = "to cancel the long exposure which is on." ]
# [ doc = "" ]
# [ doc = "" ]
# [ doc = "Paras\u{fffd}\u{fffd}" ]
# [ doc = "int CameraID: this is get from the camera property use the API ASIGetCameraProperty" ]
# [ doc = "" ]
# [ doc = "" ]
# [ doc = "return:" ]
# [ doc = "ASI_SUCCESS : Operation is successful" ]
# [ doc = "ASI_ERROR_CAMERA_CLOSED : camera didn\'t open" ]
# [ doc = "ASI_ERROR_INVALID_ID  :no camera of this ID is connected or ID value is out of boundary" ]
    pub fn ASIStopExposure ( iCameraID: os::raw::c_int ) -> ErrorCode;
}
extern "C" {
# [ doc = "Descriptions\u{fffd}\u{fffd}" ]
# [ doc = "to get the exposure status, work with ASIStartExposure." ]
# [ doc = "you can read the data if get ASI_EXP_SUCCESS. or have to restart exposure again" ]
# [ doc = "if get ASI_EXP_FAILED" ]
# [ doc = "" ]
# [ doc = "Paras\u{fffd}\u{fffd}" ]
# [ doc = "int CameraID: this is get from the camera property use the API ASIGetCameraProperty" ]
# [ doc = "ASI_EXPOSURE_STATUS *pExpStatus: the exposure status" ]
# [ doc = "" ]
# [ doc = "" ]
# [ doc = "return:" ]
# [ doc = "ASI_SUCCESS : Operation is successful" ]
# [ doc = "ASI_ERROR_CAMERA_CLOSED : camera didn\'t open" ]
# [ doc = "ASI_ERROR_INVALID_ID  :no camera of this ID is connected or ID value is out of boundary" ]
    pub fn ASIGetExpStatus ( iCameraID: os::raw::c_int , pExpStatus : * mut ASI_EXPOSURE_STATUS ) -> ErrorCode;
}
extern "C" {
# [ doc = "Descriptions\u{fffd}\u{fffd}" ]
# [ doc = "get data after exposure." ]
# [ doc = "please make sure the buffer size is biger enough to hold one image" ]
# [ doc = "otherwise the this API will crash" ]
# [ doc = "" ]
# [ doc = "" ]
# [ doc = "Paras\u{fffd}\u{fffd}" ]
# [ doc = "int CameraID: this is get from the camera property use the API ASIGetCameraProperty" ]
# [ doc = "unsigned char* pBuffer, caller need to malloc the buffer, make sure the size is big enough" ]
# [ doc = "the size in byte:" ]
# [ doc = "8bit mono:width*height" ]
# [ doc = "16bit mono:width*height*2" ]
# [ doc = "RGB24:width*height*3" ]
# [ doc = "" ]
# [ doc = "" ]
# [ doc = "return:" ]
# [ doc = "ASI_SUCCESS : Operation is successful" ]
# [ doc = "ASI_ERROR_CAMERA_CLOSED : camera didn\'t open" ]
# [ doc = "ASI_ERROR_INVALID_ID  :no camera of this ID is connected or ID value is out of boundary" ]
# [ doc = "ASI_ERROR_TIMEOUT: no image get and timeout" ]
    pub fn ASIGetDataAfterExp ( iCameraID: os::raw::c_int , pBuffer : * mut os::raw::c_uchar , lBuffSize: os::raw::c_long ) -> ErrorCode;
}
extern "C" {
# [ doc = "Descriptions\u{fffd}\u{fffd}" ]
# [ doc = "get camera id stored in flash, only available for USB3.0 camera" ]
# [ doc = "" ]
# [ doc = "Paras\u{fffd}\u{fffd}" ]
# [ doc = "int CameraID: this is get from the camera property use the API ASIGetCameraProperty" ]
# [ doc = "ASI_ID* pID: pointer to ID" ]
# [ doc = "" ]
# [ doc = "return:" ]
# [ doc = "ASI_SUCCESS : Operation is successful" ]
# [ doc = "ASI_ERROR_CAMERA_CLOSED : camera didn\'t open" ]
# [ doc = "ASI_ERROR_INVALID_ID  :no camera of this ID is connected or ID value is out of boundary" ]
    pub fn ASIGetID ( iCameraID: os::raw::c_int , pID : * mut ASI_ID ) -> ErrorCode;
}
extern "C" {
# [ doc = "Descriptions\u{fffd}\u{fffd}" ]
# [ doc = "write camera id to flash, only available for USB3.0 camera" ]
# [ doc = "" ]
# [ doc = "Paras\u{fffd}\u{fffd}" ]
# [ doc = "int CameraID: this is get from the camera property use the API ASIGetCameraProperty" ]
# [ doc = "ASI_ID ID: ID" ]
# [ doc = "" ]
# [ doc = "return:" ]
# [ doc = "ASI_SUCCESS : Operation is successful" ]
# [ doc = "ASI_ERROR_CAMERA_CLOSED : camera didn\'t open" ]
# [ doc = "ASI_ERROR_INVALID_ID  :no camera of this ID is connected or ID value is out of boundary" ]
    pub fn ASISetID ( iCameraID: os::raw::c_int , ID : ASI_ID ) -> ErrorCode;
}
extern "C" {
# [ doc = "Descriptions\u{fffd}\u{fffd}" ]
# [ doc = "get pre-setting parameter" ]
# [ doc = "Paras\u{fffd}\u{fffd}" ]
# [ doc = "int CameraID: this is get from the camera property use the API ASIGetCameraProperty" ]
# [ doc = "Offset_HighestDR: offset at highest dynamic range," ]
# [ doc = "Offset_UnityGain: offset at unity gain" ]
# [ doc = "int *Gain_LowestRN, *Offset_LowestRN: gain and offset at lowest read noise" ]
# [ doc = "" ]
# [ doc = "return:" ]
# [ doc = "ASI_SUCCESS : Operation is successful" ]
# [ doc = "ASI_ERROR_CAMERA_CLOSED : camera didn\'t open" ]
# [ doc = "ASI_ERROR_INVALID_ID  :no camera of this ID is connected or ID value is out of boundary" ]
    pub fn ASIGetGainOffset ( iCameraID: os::raw::c_int , pOffset_HighestDR : * mut os::raw::c_int , pOffset_UnityGain : * mut os::raw::c_int , pGain_LowestRN : * mut os::raw::c_int , pOffset_LowestRN : * mut os::raw::c_int ) -> ErrorCode;
}
extern "C" {
# [ doc = "Descriptions\u{fffd}\u{fffd}" ]
# [ doc = "get version string, like \"1, 13, 0503\"" ]
    pub fn ASIGetSDKVersion ( ) -> * mut os::raw::c_char;
}
extern "C" {
# [ doc = "Description:" ]
# [ doc = "Get the camera supported mode, only need to call when the IsTriggerCam in the CameraInfo is true." ]
# [ doc = "Paras:" ]
# [ doc = "int CameraID: this is get from the camera property use the API ASIGetCameraProperty" ]
# [ doc = "ASI_SUPPORTED_MODE: the camera supported mode" ]
# [ doc = "" ]
# [ doc = "return:" ]
# [ doc = "ASI_SUCCESS : Operation is successful" ]
# [ doc = "ASI_ERROR_CAMERA_CLOSED : camera didn\'t open" ]
# [ doc = "ASI_ERROR_INVALID_ID  :no camera of this ID is connected or ID value is out of boundary" ]
    pub fn ASIGetCameraSupportMode ( iCameraID: os::raw::c_int , pSupportedMode : * mut ASI_SUPPORTED_MODE ) -> ErrorCode;
}
extern "C" {
# [ doc = "Description:" ]
# [ doc = "Get the camera current mode, only need to call when the IsTriggerCam in the CameraInfo is true" ]
# [ doc = "Paras:" ]
# [ doc = "int CameraID: this is get from the camera property use the API ASIGetCameraProperty" ]
# [ doc = "ASI_CAMERA_MODE: the current camera mode" ]
# [ doc = "" ]
# [ doc = "return:" ]
# [ doc = "ASI_SUCCESS : Operation is successful" ]
# [ doc = "ASI_ERROR_CAMERA_CLOSED : camera didn\'t open" ]
# [ doc = "ASI_ERROR_INVALID_ID  :no camera of this ID is connected or ID value is out of boundary" ]
    pub fn ASIGetCameraMode ( iCameraID: os::raw::c_int , mode : * mut ASI_CAMERA_MODE ) -> ErrorCode;
}
extern "C" {
# [ doc = "Description:" ]
# [ doc = "Set the camera mode, only need to call when the IsTriggerCam in the CameraInfo is true" ]
# [ doc = "Paras:" ]
# [ doc = "int CameraID: this is get from the camera property use the API ASIGetCameraProperty" ]
# [ doc = "ASI_CAMERA_MODE: this is get from the camera property use the API ASIGetCameraProperty" ]
# [ doc = "" ]
# [ doc = "return:" ]
# [ doc = "ASI_SUCCESS : Operation is successful" ]
# [ doc = "ASI_ERROR_CAMERA_CLOSED : camera didn\'t open" ]
# [ doc = "ASI_ERROR_INVALID_SEQUENCE : camera is in capture now, need to stop capture first." ]
# [ doc = "ASI_ERROR_INVALID_MODE  : mode is out of boundary or this camera do not support this mode" ]
    pub fn ASISetCameraMode ( iCameraID: os::raw::c_int , mode : ASI_CAMERA_MODE ) -> ErrorCode;
}
extern "C" {
# [ doc = "Description:" ]
# [ doc = "Send out a softTrigger. For edge trigger, it only need to set true which means send a" ]
# [ doc = "rising trigger to start exposure. For level trigger, it need to set true first means" ]
# [ doc = "start exposure, and set false means stop exposure.it only need to call when the" ]
# [ doc = "IsTriggerCam in the CameraInfo is true" ]
# [ doc = "Paras:" ]
# [ doc = "int CameraID: this is get from the camera property use the API ASIGetCameraProperty" ]
# [ doc = "AsiBool starts:send a softTrigger start/stop signal" ]
    pub fn ASISendSoftTrigger ( iCameraID: os::raw::c_int , bStart: os::raw::c_int ) -> ErrorCode;
}
*/