17 lines
246 B
C
Raw Normal View History

2017-04-14 19:02:05 +02:00
#pragma once
2023-05-23 16:38:00 +02:00
#ifdef _WIN32
# define EXPORT __declspec(dllexport)
# define IMPORT __declspec(dllimport)
#else
# define EXPORT __attribute__((__visibility__("default")))
# define IMPORT
#endif
2017-04-14 19:02:05 +02:00
struct result_type
{
int input;
int sum;
};