blob: 60cde6aae607db3468d8b606f0f8b87997996f70 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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();
}
|