I'm working on the creation of an ActiveX EXE using VB6, and the only example I got is all written in Delphi.
Reading the example code, I noticed there are some functions whose signatures are followed by the safecall keyword. Here's an example:
function AddSymbol(ASymbol: OleVariant): WordBool; safecall;
So, here's the question: what is the purpose of this keyword?
Thanks.