VectorNav C Library
port.h
1 #ifndef VNPORT_H_INCLUDED
2 #define VNPORT_H_INCLUDED
3 
7 #ifdef _MSC_VER
8  #if VN_LINKED_AS_SHARED_LIBRARY
9  #define VNAPI __declspec(dllimport)
10  #elif VN_CREATE_SHARED_LIBRARY
11  #define VNAPI __declspec(dllexport)
12  #endif
13 #endif
14 
15 #ifndef VNAPI
16  #define VNAPI
17 #endif
18 
19 #endif