aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/plugin-dependency/plugin1.cpp
blob: 8cf7e3851166fab991b61dc0e91c5ca4a7337c9d (plain)
1
2
3
4
5
6
7
#include "../dllexport.h"
#include <cstdio>

DLL_EXPORT void plugin1_hello()
{
    std::puts("plugin1 says hello!");
}