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

'identifier' : modifier functions require prototypes

A function with the __fastcall calling convention is not prototyped or has an old-style prototype.

Example

void __fastcall func1 ( i, j );      // old-style
void __fastcall func2 ( int i, int ) // new style