summaryrefslogtreecommitdiff
path: root/Tests/ModuleDefinition/example_exe.c
blob: 253ae8b70b9130a26b8ee4f40208e5995505e6a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
extern int __declspec(dllimport) example_dll_function(void);
extern int __declspec(dllimport) example_dll_gen_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() +
    example_dll_gen_function() +
#ifdef EXAMPLE_DLL_2
    example_dll_2_function() +
#endif
    example_exe_function();
}