Fixed newline characters throughout the code
[com/gs-lite.git] / src / ftacmp / 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 #ifndef _TYPE_INDICATORS_DEFINED__
16 #define _TYPE_INDICATORS_DEFINED__
17
18 //      WARNING!
19 //      This file replicated in gscpv2/include
20 //      These files must be synched!
21
22 #define UINT_TYPE 0
23 #define INT_TYPE 1
24 #define ULLONG_TYPE 2
25 #define LLONG_TYPE 3
26 #define USHORT_TYPE 4
27 #define FLOAT_TYPE 5
28 #define BOOL_TYPE 6
29 #define VSTR_TYPE 7
30 #define TIMEVAL_TYPE 8
31 #define IP_TYPE 9
32 #define FSTRING_TYPE 10
33 #define IPV6_TYPE 11
34 #define UNDEFINED_TYPE 12
35
36 #endif
37