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

qualifier applied to function type has no meaning

A qualifier, such as const, is applied to a function type defined by typedef.

Example

typedef int *FuncType(void);

//the const qualifier cannot be applied to the 
//function type FuncType, generates warning:
const FuncType f;