summaryrefslogtreecommitdiffstats
path: root/tests/cpp-compiler/c-compile-shared-library.c
blob: 5af13b4c91c99b1cd2b0476c55b6bfdad75fa894 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// TEST(smoke,shared-library):CPP_COMPILER_SHARED_LIBRARY:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#if defined(_MSC_VER)
#define DLL_EXPORT __declspec(dllexport)
#else
// #   define DLL_EXPORT
#define DLL_EXPORT __attribute__((dllexport)) __attribute__((__visibility__("default")))
#endif

#ifdef __cplusplus
#define EXTERN_C extern "C"
#else
#define EXTERN_C
#endif

EXTERN_C DLL_EXPORT int test(int intValue, const char* textValue, char* outTextValue)
{
    strcpy(outTextValue, textValue);
    return intValue;
}