Added additional UFAFs, fixed gsprintconsole_ves to handle float measruement intervals
[com/gs-lite.git] / include / type_indicators.h
1 /* ------------------------------------------------
2 Copyright 2014 AT&T Intellectual Property
3    Licensed under the Apache License, Version 2.0 (the "License");
4    you may not use this file except in compliance with the License.
5    You may obtain a copy of the License at
6
7      http://www.apache.org/licenses/LICENSE-2.0
8
9    Unless required by applicable law or agreed to in writing, software
10    distributed under the License is distributed on an "AS IS" BASIS,
11    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12    See the License for the specific language governing permissions and
13    limitations under the License.
14  ------------------------------------------- */
15
16 #ifndef _TYPE_INDICATORS_DEFINED__
17 #define _TYPE_INDICATORS_DEFINED__
18
19 //      WARNING!
20 //      This file replicated in gscpv2/src/ftacmp
21 //      These files must be synched!
22
23
24 #define UINT_TYPE 0
25 #define INT_TYPE 1
26 #define ULLONG_TYPE 2
27 #define LLONG_TYPE 3
28 #define USHORT_TYPE 4
29 #define FLOAT_TYPE 5
30 #define BOOL_TYPE 6
31 #define VSTR_TYPE 7
32 #define TIMEVAL_TYPE 8
33 #define IP_TYPE 9
34 #define FSTRING_TYPE 10
35 #define IPV6_TYPE 11
36 #define UNDEFINED_TYPE 12
37
38
39
40 #endif
41