aboutsummaryrefslogtreecommitdiff
path: root/src/lanesconf.h
blob: fb4a60120e08fa3f17841a0cda67702caba2dc3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma once

#include "platform.h"

#if (defined PLATFORM_WIN32) || (defined PLATFORM_POCKETPC)
#ifdef __cplusplus
#define LANES_API extern "C" __declspec(dllexport)
#else
#define LANES_API extern __declspec(dllexport)
#endif // __cplusplus
#else
#ifdef __cplusplus
#define LANES_API extern "C"
#else
#define LANES_API extern
#endif // __cplusplus
#endif // (defined PLATFORM_WIN32) || (defined PLATFORM_POCKETPC)