cmake/Tests/ModuleDefinition/example_mod_1.c

21 lines
478 B
C
Raw Normal View History

2009-10-04 10:30:41 +03:00
#ifdef __WATCOMC__
2018-08-09 18:06:22 +02:00
# define MODULE_CCONV __cdecl
2009-10-04 10:30:41 +03:00
#else
2018-08-09 18:06:22 +02:00
# define MODULE_CCONV
2009-10-04 10:30:41 +03:00
#endif
int __declspec(dllimport) example_exe_function(void);
int __declspec(dllimport) example_dll_function(void);
2009-10-11 10:55:36 +03:00
#ifdef EXAMPLE_DLL_2
2009-10-04 10:30:41 +03:00
int __declspec(dllimport) example_dll_2_function(void);
#endif
__declspec(dllexport) int MODULE_CCONV example_mod_1_function(int n)
{
2016-07-09 11:21:54 +02:00
return example_dll_function() +
2009-10-11 10:55:36 +03:00
#ifdef EXAMPLE_DLL_2
2009-10-04 10:30:41 +03:00
example_dll_2_function() +
#endif
example_exe_function() + n;
}