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
341 B

extern int __declspec(dllimport) example_dll_function(void);
#ifdef EXAMPLE_DLL_2
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 EXAMPLE_DLL_2
example_dll_2_function() +
#endif
example_exe_function();
}