Hello, my name is Abdo Roig. I have Visual C++ 5.0, and I need to export a function (in a DLL) in pascal style (I think I must use __stdcall), but it doesn't work. I have discovered that, even using extern "C" directrive, Visual C uses decorated names. VC puts a _ character before the name and @n after the name of the function, where n is a number. My question is if I can compile a C source code without that "decoration", and How can I do it. Because I think that this "decoration" is the problem of compatibility.
Thank you.
Thank you.