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) C4563

'/Gr - __fastcall calling convention' switch incompatible with the '/com+' switch: changing to '/Gz - __stdcall calling convention'

The /com+ and /Gr compiler options cannot be used together. The compiler ignores the /Gr option. To resolve the warning eliminate one of the compiler options. The following sample generates C4563:

// compile with /com+ and /Gr
void main() {
}