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

value of pragma pack(show) == n

This warning is issued when you use the show option of the pack pragma. n is the current pack value.

For example, the following code shows how the C4810 warning works with the pack pragma:

#pragma pack(show)
#pragma pack(4)
#pragma pack(show)
void main(){}