summaryrefslogtreecommitdiffstats
path: root/Tests/ModuleDefinition/example_exe.c
blob: dff566f10592a349c005205b99a886bee45a7b5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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();
}