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 3) C4135

conversion between different integral types

Information was lost while converting between two integer types.

To avoid this warning, provide an appropriate type cast.

Example

void main(void)
{
   int intvar;
   long longvar;
   intvar = longvar;  // warning
// intvar = (int) longvar; // No warning for this line
}