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.
15 lines
331 B
15 lines
331 B
extern int __declspec(dllimport) example_dll_function(void);
|
|
#ifdef _MSC_VER
|
|
extern int __declspec(dllimport) example_dll_2_function(void);
|
|
#endif
|
|
int example_exe_function(void) { return 0; }
|
|
int main(void)
|
|
{
|
|
return
|
|
example_dll_function() +
|
|
#ifdef _MSC_VER
|
|
example_dll_2_function() +
|
|
#endif
|
|
example_exe_function();
|
|
}
|