summaryrefslogtreecommitdiff
path: root/Tests/ModuleDefinition/example_mod_1.c
blob: 4e2f9ba1f53a3c708960b6e005dacd363485390d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifdef __WATCOMC__
# define MODULE_CCONV __cdecl
#else
# define MODULE_CCONV
#endif

int __declspec(dllimport) example_exe_function(void);
int __declspec(dllimport) example_dll_function(void);
#ifdef EXAMPLE_DLL_2
int __declspec(dllimport) example_dll_2_function(void);
#endif

__declspec(dllexport) int MODULE_CCONV example_mod_1_function(int n)
{
  return
    example_dll_function() +
#ifdef EXAMPLE_DLL_2
    example_dll_2_function() +
#endif
    example_exe_function() + n;
}