summaryrefslogtreecommitdiff
path: root/Tests/Plugin/src/example_mod_1.c
blob: 1fc7338451496e754cbdab6ff6ef88a006f4060d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <example.h>

#include <stdio.h>

#if defined(_WIN32)
# define MODULE_EXPORT __declspec(dllexport)
#else
# define MODULE_EXPORT
#endif

#ifdef __WATCOMC__
# define MODULE_CCONV __cdecl
#else
# define MODULE_CCONV
#endif

MODULE_EXPORT int MODULE_CCONV example_mod_1_function(int n)
{
  int result = example_exe_function() + n;
  printf("world\n");
  return result;
}