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

conversion of pointer to non-integral type

A pointer was cast to a noninteger type, such as float. The cast pointer address may be invalid.

Example

   int     i = 24; 
   printf( "Address: %f\\n", ( float ) &i );