You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
470 B
22 lines
470 B
15 years ago
|
#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 _MSC_VER
|
||
|
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 _MSC_VER
|
||
|
example_dll_2_function() +
|
||
|
#endif
|
||
|
example_exe_function() + n;
|
||
|
}
|