Hi My VC2008 project uses stdcall calling conventions. I have an external library that I use that was built using the cdecl naming convention, however they did not mention the calling convention in the function function declaration.
I would like to know if VC has some kind of #pragma or some other keyword that would force a specific calling convention for the whole header file
sort of like an extern "C" trick, but for calling conventions:
extern "C" { #include <file1.h> #include <file2.h> }
Does anyone know about these?
Grim
source share