calling convention redefinition from '__stdcall' to '__cdecl' ignored
An attempt to change the calling convention was ignonred.
The following sample generates C4440:
typedef void __stdcall F(); typedef F __cdecl *PFV; // C4440 void main() { }