Check for full match with major version
[ACE_TAO.git] / ACE / examples / Export / dll.cpp
blob8429b11413f7fbe86263f404960e0d39e089f93d
1 #include "dll.h"
3 int test_variable = 0;
5 int
6 test_function ()
8 test_variable = RETVAL;
9 return RETVAL;
12 int
13 test_class::method ()
15 return RETVAL;
18 test_class *
19 get_dll_singleton ()
21 return TEST_SINGLETON::instance ();
24 ACE_SINGLETON_TEMPLATE_INSTANTIATE(ACE_Singleton, test_class, ACE_Null_Mutex);