VSM C++ SDK
Vehicle Specific Modules SDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
win/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 _WIN32
10 #error "This header should be included only in Windows build."
11 #endif
12 
13 #ifndef PLATFORM_H_
14 #define PLATFORM_H_
15 
16 #include <ugcs/vsm/endian.h>
17 
18 
20 #define PATH_SEPARATOR '\\'
21 
22 #define LINE_TERMINATOR "\r\n"
23 
24 #endif /* PLATFORM_H_ */
VSM definitions to work with byte order.