1000 Dank!!
after putting __declspec(dllexport) void helloworld_setup(void) before the setup function, it worked fine!
now i can bang a hello world, and it makes me lucky! ;-)
thanks to cdr and martin best regards!
metin
PD found the dll but couldn't find the setup function. Probably you need to put __declspec(dllexport) in front of the declaration of helloworld_setup so that the name will be made visible to programs that load helloworld.dll.
Like this: __declspec(dllexport) void helloworld_setup(void)
Martin