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 Error C2735

'keyword' keyword is not permitted in formal parameter type specifier

The keyword is illegal in this context.

Example

void main()
{
   int *myint;
   myint = new static int;     // error
   myint = new typedef int;    // error
   myint = new auto int;       // error
   myint = new register int;   // error
}