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