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

'function': name was marked as #pragma deprecated

The compiler encountered a function that was marked with pragma deprecated. The function may no longer be supported in a future release. You can turn this warning off with the warning pragma (example below).

The following sample generates C4995:

#include <stdio.h>
// #pragma warning(disable : 4995)
void func1(void){printf("\nIn func1");}

void main() {
func1();
#pragma deprecated(func1)
func1();   // C4995
}