summaryrefslogtreecommitdiffstats
path: root/Tests/ExportImport/Import/install-RUNTIME_DEPENDENCIES/main.c
blob: 94a7862d4c5e4a2fa1f0e309b03dc2d3f63a6ac2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#ifdef _WIN32
#  define DLLIMPORT __declspec(dllimport)
#else
#  define DLLIMPORT
#endif

DLLIMPORT extern void dep1(void);
DLLIMPORT extern void dep2(void);
DLLIMPORT extern void dep3(void);
DLLIMPORT extern void dep4(void);
DLLIMPORT extern void dep5(void);
DLLIMPORT extern void dep10(void);
DLLIMPORT extern void dep11(void);
DLLIMPORT extern void dep12(void);
DLLIMPORT extern void sublib1(void);
DLLIMPORT extern void sublib2(void);

int main(void)
{
  dep1();
  dep2();
  dep3();
  dep4();
  dep5();
  dep10();
  dep11();
  dep12();
  sublib1();
  sublib2();
  return 0;
}