aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/plugin-dependency/main.cpp
blob: d34c880ffb968ece0631e010351f9532a91e67b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "../dllexport.h"

DLL_IMPORT void plugin3_hello();
DLL_IMPORT void plugin4_hello();
DLL_IMPORT void helper1_hello();

int main()
{
    plugin3_hello();
    plugin4_hello();
    helper1_hello();
    return 0;
}