1#include <kcmoduleproxy.h>
2#include <kprintpreview.h>
3#include <kemoticons/kemoticons.h>
4#include <kidletime/kidletime.h>
5
6Q_GLOBAL_STATIC_WITH_ARGS( KCModuleProxy, foo, ( 0 ) )
7Q_GLOBAL_STATIC_WITH_ARGS( KPrintPreview, bar, ( 0, 0 ) )
8Q_GLOBAL_STATIC( KEmoticons, foobar )
9Q_GLOBAL_STATIC( KIdleTime*, baz )
10
11void _k__get_dummy_used()
12{
13 foo();
14 bar();
15 foobar();
16 baz();
17 KIdleTime::instance();
18}
19
20#ifdef Q_WS_WIN
21__declspec(dllexport) int __dummy_function() { return 5; }
22#endif
23