VSM C++ SDK
Vehicle Specific Modules SDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
android-linux-mac/ugcs/vsm/platform.h
1 // Copyright (c) 2018, Smart Projects Holdings Ltd
2 // All rights reserved.
3 // See LICENSE file for license details.
4 
5 /*
6  * Platform-dependent definitions.
7  */
8 
9 #ifndef __unix__
10 #ifndef __APPLE__
11 #error "This header should be included only in unix build."
12 #endif
13 #endif
14 
15 #ifndef PLATFORM_H_
16 #define PLATFORM_H_
17 
18 #include <ugcs/vsm/endian.h>
19 
20 
22 #define PATH_SEPARATOR '/'
23 
24 #define LINE_TERMINATOR "\n"
25 
26 #endif /* PLATFORM_H_ */
VSM definitions to work with byte order.