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

function call missing argument list

A function call must include the open and close parentheses after the function name even if the function takes no parameters.

Example

void function1(){
   
}

main()
{   
   function1;
   return 0;
}