Developer Application Interface (ARC API) v4.5.8
ARC, Inc. GenIV Application Interface
ArcSyntheticDefs.h
1// +------------------------------------------------------------------------------------------------------------------+
2// | FILE: ArcSyntheticDefs.h ( GenIV ) |
3// +------------------------------------------------------------------------------------------------------------------+
4// | PURPOSE: This file defines the controller synthetic image source modes. |
5// | |
6// | AUTHOR: Scott Streit DATE: Feb 26, 2020 |
7// | |
8// | Copyright 2020 Astronomical Research Cameras, Inc. All rights reserved. |
9// +------------------------------------------------------------------------------------------------------------------+
12#pragma once
13
14#ifdef __cplusplus
15
16 namespace arc
17 {
18 namespace gen4
19 {
20
21#endif
22
39#ifdef __cplusplus
40 enum class synImgSource_e : std::uint32_t
41#else
42 typedef enum synImgSourceType
43#endif
44 {
45 eNone = 0,
46 eARC420,
49#ifdef __cplusplus
50 };
51#else
52 } synImgSource_e;
53#endif
54
55
56#ifdef __cplusplus
57
58 } // end gen4 namespace
59 } // end arc namespace
60
61#endif
Definition: CArcBase.h:50