Developer Application Interface (ARC API) v4.5.8
ARC, Inc. GenIV Application Interface
ArcFlashMemoryDefs.h
1// +------------------------------------------------------------------------------------------------------------------+
2// | FILE: ArcFlashMemoryDefs.h ( GenIV ) |
3// +------------------------------------------------------------------------------------------------------------------+
4// | PURPOSE: This file defines flash memory block identifiers. |
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
38#ifdef __cplusplus
39 enum class flashMemoryId_e : std::uint32_t
40#else
41 typedef enum _FlashMemoryId
42#endif
43 {
50#ifdef __cplusplus
51 };
52#else
53 } flashMemoryId_e;
54#endif
55
56
57#ifdef __cplusplus
58
59 } // end gen4 namespace
60 } // end arc namespace
61
62#endif
Definition: CArcBase.h:50