ADTF File Library
Loading...
Searching...
No Matches
legacy_utils4_utils5_types.h
Go to the documentation of this file.
1
16
17#ifndef ADTF_FILES_LEGACY_UTILS4_UTILS5_TYPES
18#define ADTF_FILES_LEGACY_UTILS4_UTILS5_TYPES
19
21using tUInt8 = uint8_t;
22using tInt8 = int8_t;
23
24using tUInt16 = uint16_t;
25using tInt16 = int16_t;
26
27using tUInt32 = uint32_t;
28using tInt32 = int32_t;
29
30using tUInt64 = uint64_t;
31using tInt64 = int64_t;
32
33using tFloat64 = double;
34using tFloat32 = float;
35
36using tTimeStamp = timestamp_t;
37
38using tResult = void*;
39
40using tChar = char;
41
42using tVoid = void;
43
45#endif