NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Compiler Warning (level 1) C4440

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() {
}