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!

/EH (Exception Handling Model)

/EH{s|a}[c][-]

This option specifies the model of exception handling to be used by the compiler.

The /EHc option requires that /EHs, /EHa, or /GX is specified. It tells the compiler to assume that extern C functions never throw an exception.

The option can be cleared by the symbol -. For example: /EHsc- is interpreted as /EHs /EHc- , and is equivalent to /EHs.

See Synchronous Exception Handling for more information.

See Also

Compiler Options | Setting Compiler Options