I'm writing some plugins to DBpro, that lets u to use standart MS-windows GUI(Graphic User Interface) on MSVC++ 6.0. All was well before i tryed to include my DLL to DB plugins-user catalog. Strange

, my DLL works well, i'm sure but it doesn't want to work in DBpro!!!!!
I think problem isn't in changing function name.
(there is some bug in MS-C compiler that change function name for example myFuncTest(int a, int b) to _myFuncTest@8)
That is a part of code that must fix this bug:
/**/
#define DLLTESTLIB
extern "C" __declspec(dllexport)
And this strings in .DEF file:
EXPORTS
myFuncTest
I won't explain how it must work (bad english

) but if you want to know i advise you to read Jeffry Richter's book "Windows for professionals".
I read Lee's article about writing DLLs but i don't know even what is "plain english"? Also I think that it isn't needed if u use such cunning with changing function name, am i right?
Can anybody help me? Also i'd like to know on what compiler DBpro has been compiled?