I have a program that calls a set of function as follows:
int _stdcall VB_Create(char*);
int _stdcall VB_Open(unsigned int, unsigned int, unsigned int, unsigned int);
...
...
If there is a mismatch in the name decoration, the linker shows an error like this:
error LNK2019: unresolved external symbol "int __stdcall VB_Create(char *)" (?VB_Create@@YGHPAD@Z) .....
My understanding is that _stdcall syntax is an '_' + 'name of the function' + '@' + 'number of arguments * 4'.
So, why the linker is asking for ?VB_Create@@YGHPAD@Z name decoration? what standard is this?